Files
SVSimServer/DCGEngine.Database/Interfaces/ITimeTrackedEntity.cs
2025-05-18 02:27:17 -04:00

14 lines
398 B
C#

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; }
}