Add auditable properties to BaseDomainModel.

This commit is contained in:
Kevin Matsubara 2025-04-06 11:35:38 +02:00
parent 4175eea10c
commit 63a09998ac

View File

@ -4,4 +4,7 @@ public abstract class BaseDomainModel
{ {
public int Id { get; set; } // Anything called "Id" is automatically a Primary Key. public int Id { get; set; } // Anything called "Id" is automatically a Primary Key.
public DateTime CreatedDate { get; set;} public DateTime CreatedDate { get; set;}
public DateTime ModifiedDate { get; set;}
public string CreatedBy { get; set; }
public string ModifiedBy { get; set; }
} }