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