mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
15 lines
279 B
C#
15 lines
279 B
C#
namespace Database.Entities;
|
|
|
|
public class VsDuel : BaseEntity
|
|
{
|
|
public int WeeklyPoints { get; set; }
|
|
|
|
public int Year { get; set; }
|
|
|
|
public int CalendarWeek { get; set; }
|
|
|
|
|
|
public Guid PlayerId { get; set; }
|
|
|
|
public required Player Player { get; set; }
|
|
} |