Newer
Older
TestingWithoutInterfaces / src / PublicApi / CatalogBrandEndpoints / CatalogBrandDto.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 168 bytes Init
namespace Microsoft.eShopWeb.PublicApi.CatalogBrandEndpoints;

public class CatalogBrandDto
{
    public int Id { get; set; }
    public string Name { get; set; }
}