1
0
mirror of synced 2025-02-19 12:04:21 +01:00
2023-02-26 00:57:03 +08:00

8 lines
163 B
C#

namespace Domain.Entities;
public class OnlineMatch
{
public long MatchId { get; set; }
public List<OnlineMatchEntry> Entries { get; set; } = new();
}