Api/Netina.Domain/CommandQueries/Queries/BrandQueries.cs

4 lines
217 B
C#
Raw Permalink Normal View History

namespace Netina.Domain.CommandQueries.Queries;
2024-04-16 20:01:34 +03:30
public record GetBrandQuery(Guid Id) : IRequest<BrandLDto>;
public record GetBrandsQuery(int? Page, string? BrandName , Guid CategoryId) : IRequest<List<BrandSDto>>;