9 lines
208 B
C#
9 lines
208 B
C#
namespace OrdersManagement.Dtos
|
|
{
|
|
public class ModalDto(string? title, string? body)
|
|
{
|
|
public string? Title { get; set; } = title;
|
|
public string? Body { get; set; } = body;
|
|
}
|
|
}
|