2023-12-31 19:55:22 +03:30
|
|
|
|
namespace NetinaShop.Domain.Dtos.SmallDtos;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
|
|
|
|
|
|
public class BrandSDto : BaseDto<BrandSDto , Brand>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
|
public string Description { get; set; } = string.Empty;
|
|
|
|
|
|
public bool HasSpecialPage { get; set; }
|
|
|
|
|
|
public string PageUrl { get; set; } = string.Empty;
|
|
|
|
|
|
public string HeaderFileName { get; set; } = string.Empty;
|
|
|
|
|
|
}
|