mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
12 lines
245 B
C#
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; }
|
|
} |