Web-Development-with-Blazor.../Chapter06/MyBlog/Data.Models/Models/BlogPost.cs
2023-02-17 18:05:56 +01:00

15 lines
428 B
C#

namespace Data.Models;
using System.ComponentModel.DataAnnotations;
public class BlogPost
{
public string? Id { get; set; }
[MinLength(5)]
[Required]
public string Title { get; set; } = string.Empty;
[Required]
public string Text { get; set; } = string.Empty;
public DateTime PublishDate { get; set; }
public Category? Category { get; set; }
public List<Tag> Tags { get; set; } = new();
}