Change BaseDomainModel properties CreatedBy and ModifiedBy to be nullable.

This commit is contained in:
Kevin Matsubara 2025-04-06 11:51:15 +02:00
parent 63a09998ac
commit cccd9ba8e0

View File

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