using NetinaShop.Domain.Entities.Brands; namespace NetinaShop.Domain.Dtos.SmallDtos; public class BrandSDto : BaseDto { 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; }