2017-06-13 17:31:37 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.eShopOnContainers.Services.Locations.API.Model
|
|
|
|
|
{
|
|
|
|
|
public class UserLocationDetails
|
|
|
|
|
{
|
2017-06-14 15:17:54 +02:00
|
|
|
|
public int LocationId { get; set; }
|
2017-06-13 17:31:37 +02:00
|
|
|
|
public string Code { get; set; }
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|