Newer
Older
eShopOnWeb-VerticalFeatureSlices / src / PublicApi / CatalogBrandEndpoints / CatalogBrandDto.cs
@Derek Comartin Derek Comartin on 27 Jul 2021 190 bytes Init
namespace Microsoft.eShopWeb.PublicApi.CatalogBrandEndpoints
{
    public class CatalogBrandDto
    {
        public int Id { get; set; }
        public string Name { get; set; }
    }
}