Tomasi - Developing 98f772e5d5 .
2024-10-10 07:42:45 +02:00

8 lines
173 B
C#

namespace Database.Entities;
public class Rank : BaseEntity
{
public required string Name { get; set; }
public ICollection<Player> Players { get; set; } = [];
}