Tomasi - Developing bfbb030cb2 v. 0.11.0
2025-06-19 11:02:57 +02:00

12 lines
245 B
C#

namespace Application.DataTransferObjects.Squad;
public class CreateSquadDto
{
public Guid SquadTypeId { get; set; }
public Guid PlayerId { get; set; }
public decimal Power { get; set; }
public int Position { get; set; }
}