2023-02-26 00:57:03 +08:00
|
|
|
|
namespace Domain.Entities;
|
|
|
|
|
|
|
|
|
|
public class OnlineMatch
|
|
|
|
|
{
|
|
|
|
|
public long MatchId { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<OnlineMatchEntry> Entries { get; set; } = new();
|
2023-02-27 02:43:13 +08:00
|
|
|
|
|
|
|
|
|
public bool IsOpen { get; set; }
|
|
|
|
|
|
|
|
|
|
public Guid Guid { get; set; }
|
2023-02-26 00:57:03 +08:00
|
|
|
|
}
|