15 lines
357 B
C#
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; }
|
|||
|
}
|
|||
|
}
|