1
0
mirror of synced 2025-01-31 12:23:44 +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; }
}