mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 09:12:20 +00:00
18 lines
381 B
C#
18 lines
381 B
C#
namespace Database.Entities;
|
|
|
|
public class Squad : BaseEntity
|
|
{
|
|
public Guid SquadTypeId { get; set; }
|
|
|
|
public SquadType SquadType { get; set; } = null!;
|
|
|
|
public decimal Power { get; set; }
|
|
|
|
public int Position { get; set; }
|
|
|
|
public Guid PlayerId { get; set; }
|
|
|
|
public Player Player { get; set; } = null!;
|
|
|
|
public DateTime LastUpdateAt { get; set; }
|
|
} |