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; } public string Code { get; set; } public string Description { get; set; } } }