* Removed not needed code

* Removed not needed ModalDto
This commit is contained in:
2025-01-30 06:40:44 +01:00
parent efdbe8c6be
commit a7f120d4b1
3 changed files with 1 additions and 29 deletions

View File

@@ -1,8 +0,0 @@
namespace OrdersManagement.Dtos
{
public class ModalDto(string? title, string? body)
{
public string? Title { get; set; } = title;
public string? Body { get; set; } = body;
}
}