Added Db files

This commit is contained in:
Toastie 2024-09-20 21:07:27 +12:00
parent b12102f735
commit 7049a3fee9
Signed by: toastie_t0ast
GPG key ID: 27F3B6855AFD40A4
87 changed files with 2965 additions and 0 deletions
src/EllieBot/Db/Models

View file

@ -0,0 +1,12 @@
#nullable disable
using System.ComponentModel.DataAnnotations;
namespace EllieBot.Db.Models;
public class DbEntity
{
[Key]
public int Id { get; set; }
public DateTime? DateAdded { get; set; } = DateTime.UtcNow;
}