api/NetinaCMS.Domain/Dtos/LargDto/BlogLDto.cs

17 lines
581 B
C#
Raw Permalink Normal View History

2024-03-24 12:35:42 +03:30
using NetinaCMS.Domain.Dtos.SmallDto;
using NetinaCMS.Domain.Entities.Blogs;
namespace NetinaCMS.Domain.Dtos.LargDto;
2024-03-09 19:53:01 +03:30
public class BlogLDto : BaseDto<BlogLDto , 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 List<StorageFileSDto> Files { get; set; } = new();
}