Files
SVSimServer/SVSim.Database/Common/ITimeTrackedEntity.cs
2026-05-23 14:18:18 -04:00

15 lines
373 B
C#

namespace SVSim.Database.Common;
public interface ITimeTrackedEntity
{
/// <summary>
/// The <see cref="DateTime"/> this entity was first added to the database.
/// </summary>
DateTime DateCreated { get; set; }
/// <summary>
/// The <see cref="DateTime"/> this entity was last updated.
/// </summary>
DateTime? DateUpdated { get; set; }
}