mirror of
https://github.com/TomasiDeveloping/PlayerManagement.git
synced 2026-04-16 17:22:21 +00:00
16 lines
369 B
C#
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; }
|
|
} |