Change BaseDomainModel properties CreatedBy and ModifiedBy to be nullable.
This commit is contained in:
parent
63a09998ac
commit
cccd9ba8e0
@ -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; }
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user