Inizio pagina route configuration

This commit is contained in:
Samuele Locatelli
2026-04-10 10:35:30 +02:00
parent 3ced78bcad
commit bf79ae7477
8 changed files with 177 additions and 63 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace MP.Core.DTO
{
public class WeightDTO
{
public string Method { get; set; } = "";
public int OldWeight { get; set; } = 100;
public int NewWeight { get; set; } = 0;
}
}