Add auditable properties to BaseDomainModel.
This commit is contained in:
parent
4175eea10c
commit
63a09998ac
@ -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; }
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user