2024-04-22 13:33:39 +03:30
|
|
|
|
namespace Netina.Domain.Dtos.LargDtos;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
|
|
|
|
|
|
public class BlogLDto : BaseDto<BlogLDto , Blog>
|
|
|
|
|
|
{
|
2024-01-02 19:08:39 +03:30
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
|
|
public string Content { get; set; } = string.Empty;
|
|
|
|
|
|
public string Tags { get; set; } = string.Empty;
|
2024-04-22 13:33:39 +03:30
|
|
|
|
public string Slug { get; set; } = string.Empty;
|
2024-01-02 19:08:39 +03:30
|
|
|
|
public int ReadingTime { get; set; }
|
|
|
|
|
|
public string Summery { get; set; } = string.Empty;
|
|
|
|
|
|
public bool IsSuggested { get; set; }
|
|
|
|
|
|
public Guid CategoryId { get; set; }
|
2023-12-20 10:37:44 +03:30
|
|
|
|
public string CategoryName { get; set; } = string.Empty;
|
2024-01-31 15:03:18 +03:30
|
|
|
|
public List<StorageFileSDto> Files { get; set; } = new();
|
2023-12-20 10:37:44 +03:30
|
|
|
|
}
|