2024-03-30 15:10:36 +03:30
|
|
|
|
namespace Back.Data.Models
|
|
|
|
|
{
|
|
|
|
|
public class Blog
|
|
|
|
|
{
|
|
|
|
|
public int ID { get; set; }
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
public string Text { get; set; }
|
2024-03-31 01:33:17 +03:30
|
|
|
|
public string? Photo { get; set; }
|
2024-03-30 15:10:36 +03:30
|
|
|
|
public string Date { get; set; }
|
|
|
|
|
public string Time { get; set; }
|
|
|
|
|
public bool Status { get; set; }
|
2024-09-16 17:36:28 +03:30
|
|
|
|
public string? Tags { get; set; }
|
2024-11-16 15:08:18 +03:30
|
|
|
|
public string? DescriptionTag { get; set; }
|
|
|
|
|
public string? keywordsTag { get; set; }
|
2024-03-30 15:10:36 +03:30
|
|
|
|
}
|
|
|
|
|
}
|