2024-04-22 13:33:39 +03:30
|
|
|
|
namespace Netina.Domain.CommandQueries.Commands;
|
2024-01-13 13:05:37 +03:30
|
|
|
|
|
2024-06-08 22:51:09 +03:30
|
|
|
|
public sealed record CreateBrandCommand(string PersianName,string EnglishName, string Description , bool HasSpecialPage , string PageUrl, List<StorageFileSDto> Files) : IRequest<Guid>;
|
2024-01-13 13:05:37 +03:30
|
|
|
|
|
2024-02-22 20:34:51 +03:30
|
|
|
|
public sealed record UpdateBrandCommand(Guid Id,string PersianName, string EnglishName, string Description, bool HasSpecialPage, string PageUrl, List<StorageFileSDto> Files) : IRequest<bool>;
|
2024-01-13 13:05:37 +03:30
|
|
|
|
|
|
|
|
|
|
public sealed record DeleteBrandCommand(Guid Id) : IRequest<bool>;
|
|
|
|
|
|
|