2016-08-24 01:32:48 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace NadekoBot.Services.Database.Models
|
|
|
|
|
{
|
|
|
|
|
public class DbEntity
|
|
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
|
public int Id { get; set; }
|
2017-02-22 17:16:05 +00:00
|
|
|
|
public DateTime? DateAdded { get; set; } = DateTime.UtcNow;
|
2016-08-24 01:32:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|