1
0
mirror of synced 2025-02-07 15:01:23 +01:00

12 lines
237 B
C#
Raw Normal View History

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
}