15 lines
354 B
C#
Raw Normal View History

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
{
public int LocationId { get; set; }
2017-06-13 17:31:37 +02:00
public string Code { get; set; }
public string Description { get; set; }
}
}