Files
2026-04-10 10:35:30 +02:00

10 lines
215 B
C#

namespace MP.Core.DTO
{
public class WeightDTO
{
public string Method { get; set; } = "";
public int OldWeight { get; set; } = 100;
public int NewWeight { get; set; } = 0;
}
}