2023-12-31 19:55:22 +03:30
|
|
|
|
namespace NetinaShop.Domain.Dtos.SmallDtos;
|
2023-12-20 10:37:44 +03:30
|
|
|
|
|
|
|
|
|
|
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;
|
2024-04-12 18:30:10 +03:30
|
|
|
|
public string MainImage { get; set; } = string.Empty;
|
|
|
|
|
|
public DateTime ModifiedAt { get; set; }
|
2023-12-20 10:37:44 +03:30
|
|
|
|
}
|