namespace BuildingBlocks.Core.Model; public abstract class Entity : IEntity { public DateTime? CreatedAt { get; set; } public long? CreatedBy { get; set; } public DateTime? LastModified { get; set; } public long? LastModifiedBy { get; set; } public bool IsDeleted { get; set; } }