18 lines
545 B
C#
18 lines
545 B
C#
namespace Back.Data.Models
|
|
{
|
|
public class Blog
|
|
{
|
|
public int ID { get; set; }
|
|
public string Title { get; set; }
|
|
public string? PageTitle { get; set; }
|
|
public string Text { get; set; }
|
|
public string? Photo { get; set; }
|
|
public string Date { get; set; }
|
|
public string Time { get; set; }
|
|
public bool Status { get; set; }
|
|
public string? Tags { get; set; }
|
|
public string? DescriptionTag { get; set; }
|
|
public string? keywordsTag { get; set; }
|
|
}
|
|
}
|