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; } }