Initial split of the modules
This commit is contained in:
12
NadekoBot.Core/Services/Database/Models/DbEntity.cs
Normal file
12
NadekoBot.Core/Services/Database/Models/DbEntity.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace NadekoBot.Services.Database.Models
|
||||
{
|
||||
public class DbEntity
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
public DateTime? DateAdded { get; set; } = DateTime.UtcNow;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user