mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
14 lines
279 B
C#
14 lines
279 B
C#
namespace Application.DataTransferObjects.Squad;
|
|
|
|
public class UpdateSquadDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public Guid SquadTypeId { get; set; }
|
|
|
|
public Guid PlayerId { get; set; }
|
|
|
|
public decimal Power { get; set; }
|
|
|
|
public int Position { get; set; }
|
|
} |