Tomasi - Developing bfbb030cb2 v. 0.11.0
2025-06-19 11:02:57 +02:00

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