Newer
Older
MessageEncryption / src / PublicApi / CatalogBrandEndpoints / List.ListCatalogBrandsResponse.cs
@Derek Comartin Derek Comartin on 1 Dec 2021 451 bytes Init
using System;
using System.Collections.Generic;

namespace Microsoft.eShopWeb.PublicApi.CatalogBrandEndpoints
{
    public class ListCatalogBrandsResponse : BaseResponse
    {
        public ListCatalogBrandsResponse(Guid correlationId) : base(correlationId)
        {
        }

        public ListCatalogBrandsResponse()
        {
        }

        public List<CatalogBrandDto> CatalogBrands { get; set; } = new List<CatalogBrandDto>();
    }
}