1
0
mirror of synced 2025-02-15 02:02:38 +01:00
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; }
}