7 lines
187 B
C#
7 lines
187 B
C#
namespace EntityFrameworkCore.Domain;
|
|
// Since C#11, you do not need to wrap in accolades anymore.
|
|
public abstract class BaseDomainModel
|
|
{
|
|
public DateTime CreatedDate { get; set;}
|
|
}
|