namespace TaskLedger.Api.Domain.Entities;
///
/// Represents a task entity in the TaskLedger system.
///
public class Task
{
///
/// Gets or sets the unique identifier for the task.
///
public int Id { get; set; }
///
/// Gets or sets the title of the task.
///
public string Title { get; set; } = string.Empty;
///
/// Gets or sets the description of the task.
///
public string? Description { get; set; }
///
/// Gets or sets whether the task is completed.
///
public bool IsCompleted { get; set; }
///
/// Gets or sets the date and time when the task was created (UTC).
///
public DateTime CreatedUtc { get; set; }
}