mirror of
https://git.recroomarchive.org/RecRoomArchive/RRAC.git
synced 2026-09-08 06:31:25 -07:00
8 lines
244 B
C#
8 lines
244 B
C#
namespace RecRoomArchive.Models.API.GameSessions
|
|
{
|
|
public class JoinRandomGameSessionRequest
|
|
{
|
|
public required string[] ActivityLevelIds { get; set; } = [];
|
|
public ulong[] ExpectedPlayerIds { get; set; } = [];
|
|
}
|
|
} |