Files
blazor-crm/Data/Entities/Todo.cs
T
2026-07-21 13:59:38 +07:00

15 lines
499 B
C#

using Indotalent.Data.Abstracts;
using Indotalent.Data.Interfaces;
namespace Indotalent.Data.Entities;
public class Todo : BaseEntity, IHasAutoNumber
{
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<TodoItem> TodoItemList { get; set; } = new List<TodoItem>();
}