10 lines
215 B
C#
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;
|
|
}
|
|
}
|