1
0
mirror of synced 2025-02-22 21:20:07 +01:00
GC-local-server-rewrite/SharedProject/models/OnlineMatchingUpdateRequest.cs

14 lines
285 B
C#
Raw Normal View History

namespace SharedProject.models;
public class OnlineMatchingUpdateRequest
{
public long Action { get; set; }
public long EventId { get; set; }
public long CardId { get; set; }
public long MatchingId { get; set; }
public long MessageId { get; set; }
}