Newer
Older
InMemoryBus / src / PublicApi / CatalogBrandEndpoints / CatalogBrandDto.cs
@Derek Comartin Derek Comartin on 17 Jan 2023 168 bytes Init
namespace Microsoft.eShopWeb.PublicApi.CatalogBrandEndpoints;

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