Files
focusapp/Models/Dtos.cs
T
2026-08-09 14:05:44 +02:00

26 lines
491 B
C#

namespace FocusApp.Models;
public class CreateTaskDto
{
public string Title { get; set; } = string.Empty;
public string? Description { get; set; }
}
public class UpdateTaskDto
{
public string? Title { get; set; }
public string? Description { get; set; }
public int? Order { get; set; }
}
public class ReorderDto
{
public List<OrderItem> Orders { get; set; } = new();
}
public class OrderItem
{
public int Id { get; set; }
public int Order { get; set; }
}