LexWells.Infrastructure/LexWells.Infrastructure.Ent.../Entities/BaseEntity.cs

9 lines
261 B
C#

namespace LexWells.Infrastructure.EntityFramework.Entities;
public abstract class BaseEntity
{
public string Id { get; set; } = string.Empty;
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
public DateTime? UpdatedAt { get; set; }
}