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; } }