2024-04-22 13:33:39 +03:30
|
|
|
|
namespace Netina.Domain.Dtos.SmallDtos;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
|
|
|
|
|
|
public class BrandSDto : BaseDto<BrandSDto , Brand>
|
|
|
|
|
|
{
|
2024-02-22 20:34:51 +03:30
|
|
|
|
public string PersianName { get; set; } = string.Empty;
|
|
|
|
|
|
public string EnglishName { get; set; } = string.Empty;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
public string Description { get; set; } = string.Empty;
|
2024-08-07 16:15:53 +03:30
|
|
|
|
public string Slug { get; set; } = string.Empty;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
public bool HasSpecialPage { get; set; }
|
|
|
|
|
|
public string PageUrl { get; set; } = string.Empty;
|
|
|
|
|
|
public string HeaderFileName { get; set; } = string.Empty;
|
|
|
|
|
|
}
|