Api/NetinaShop.Domain/Dtos/SmallDtos/BlogSDto.cs

16 lines
608 B
C#

using NetinaShop.Domain.Entities.Blogs;
namespace NetinaShop.Domain.Dtos.SmallDtos;
public class BlogSDto : BaseDto<BlogSDto , Blog>
{
public string Title { get; set; } = string.Empty;
public string Content { get; set; } = string.Empty;
public string Tags { get; set; } = string.Empty;
public int ReadingTime { get; set; }
public string Summery { get; set; } = string.Empty;
public bool IsSuggested { get; set; }
public Guid CategoryId { get; set; }
public string CategoryName { get; set; } = string.Empty;
public string HeaderFileName { get; set; } = string.Empty;
}