PlayerManagement/Database/Entities/CustomEventParticipant.cs
Tomasi - Developing 35e83c4735 beta 0.0.3
2024-11-26 08:43:01 +01:00

16 lines
369 B
C#

namespace Database.Entities;
public class CustomEventParticipant : BaseEntity
{
public Player Player { get; set; } = null!;
public Guid PlayerId { get; set; }
public CustomEvent CustomEvent { get; set; } = null!;
public Guid CustomEventId { get; set; }
public bool? Participated { get; set; }
public long? AchievedPoints { get; set; }
}