namespace FocusApp.Models; public class FocusTask { public int Id { get; set; } public string Title { get; set; } = string.Empty; public string? Description { get; set; } public int Order { get; set; } public DateTime CreatedAt { get; set; } = DateTime.UtcNow; public DateTime UpdatedAt { get; set; } = DateTime.UtcNow; }