summaryrefslogtreecommitdiff
path: root/CoreWiki/Models/Article.cs
blob: c4617587418437e3c2f1a0383cf6bee516b3db1e (plain)
1
2
3
4
5
6
7
8
9
10
11
using System.ComponentModel.DataAnnotations;

namespace CoreWiki.Models;

public class Article
{
    [Required, Key]
    public string Topic { get; set; }
    public DateTime Published { get; set; } = DateTime.UtcNow;
    public string Content { get; set; }
}