No repository description.
namespace SplitApp.Shared.Kernel.Domain;
public abstract class BaseEntity : IBaseEntity
{
public Guid Id { get; set; } = Guid.NewGuid();
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
public DateTime UpdatedAt { get; set; } = DateTime.UtcNow;
}