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