12 lines
237 B
C#
12 lines
237 B
C#
namespace Domain.Entities;
|
|
|
|
public class OnlineMatch
|
|
{
|
|
public long MatchId { get; set; }
|
|
|
|
public List<OnlineMatchEntry> Entries { get; set; } = new();
|
|
|
|
public bool IsOpen { get; set; }
|
|
|
|
public Guid Guid { get; set; }
|
|
} |