using Indotalent.Data.Abstracts; using Indotalent.Data.Interfaces; namespace Indotalent.Data.Entities; public class Todo : BaseEntity, IHasAutoNumber, IMultiTenant { public string? TenantId { get; set; } public string? Name { get; set; } public string? AutoNumber { get; set; } public DateTime? StartTime { get; set; } public DateTime? EndTime { get; set; } public bool IsCompleted { get; set; } public string? Description { get; set; } public ICollection TodoItemList { get; set; } = new List(); }