12 lines
496 B
C#
12 lines
496 B
C#
namespace Netina.Domain.Dtos.SmallDtos;
|
|
|
|
public class BrandSDto : BaseDto<BrandSDto , Brand>
|
|
{
|
|
public string PersianName { get; set; } = string.Empty;
|
|
public string EnglishName { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public string Slug { get; set; } = string.Empty;
|
|
public bool HasSpecialPage { get; set; }
|
|
public string PageUrl { get; set; } = string.Empty;
|
|
public string HeaderFileName { get; set; } = string.Empty;
|
|
} |