1
0
mirror of synced 2024-11-27 23:50:49 +01:00
GC-local-server-rewrite/Domain/Entities/OnlineMatch.cs
2023-02-27 02:43:13 +08:00

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; }
}