Web-Development-with-Blazor.../Chapter05/MyBlog/Data.Models/Models/BlogPost.cs
2023-02-17 15:28:17 +01:00

12 lines
335 B
C#

namespace Data.Models;
public class BlogPost
{
public string? Id { get; set; }
public string Title { get; set; } = string.Empty;
public string Text { get; set; } = string.Empty;
public DateTime PublishDate { get; set; }
public Category? Category { get; set; }
public List<Tag> Tags { get; set; } = new();
}