2017-06-13 17:31:37 +02:00

15 lines
357 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Microsoft.eShopOnContainers.Services.Locations.API.Model
{
public class UserLocationDetails
{
public string LocationId { get; set; }
public string Code { get; set; }
public string Description { get; set; }
}
}