mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
13 lines
273 B
C#
13 lines
273 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace NadekoBot.Core.Services.Database.Models
|
|
{
|
|
public class DbEntity
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public DateTime? DateAdded { get; set; } = DateTime.UtcNow;
|
|
}
|
|
}
|