This commit is contained in:
gamer147
2024-09-05 08:32:54 -04:00
parent 8d62c9f238
commit ee7e276036
45 changed files with 1506 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
namespace DCGEngine.Database.Interfaces;
public interface ITimeTrackedEntity
{
/// <summary>
/// The <see cref="DateTime"/> this entity was first added to the database.
/// </summary>
public DateTime? DateCreated { get; set; }
/// <summary>
/// The <see cref="DateTime"/> this entity was last updated.
/// </summary>
public DateTime? DateUpdated { get; set; }
}