More changes...
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace RecRoomArchive.Models.API.GameSessions
|
||||
{
|
||||
public class PresenceResponseFuckYou
|
||||
{
|
||||
[JsonPropertyName(name: "PlayerId")]
|
||||
public ulong PlayerId { get; set; }
|
||||
|
||||
[JsonPropertyName(name: "IsOnline")]
|
||||
public bool IsOnline { get; set; }
|
||||
|
||||
[JsonPropertyName(name: "GameSession")]
|
||||
public GameSession? GameSession { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user