namespace OrdersManagement.Dtos { public class ModalDto(string? title, string? body) { public string? Title { get; set; } = title; public string? Body { get; set; } = body; } }