mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +01:00
12 lines
335 B
C#
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();
|
|||
|
|
}
|