mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 09:18:27 -04:00
12 lines
229 B
C#
12 lines
229 B
C#
#nullable disable
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Nadeko.Bot.Db.Models;
|
|
|
|
public class DbEntity
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
public DateTime? DateAdded { get; set; } = DateTime.UtcNow;
|
|
} |