Testing more garbage encryption

This commit is contained in:
gamer147
2024-09-07 22:14:24 -04:00
parent f7657c2ec4
commit 7e4bce9ac5
32 changed files with 783 additions and 51 deletions

View File

@@ -3,12 +3,12 @@ using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Requests;
[MessagePackObject]
public abstract class BaseRequest
public class BaseRequest
{
[Key("viewer_id")]
public string ViewerId { get; set; }
[Key("steam_id")]
public long SteamId { get; set; }
public ulong SteamId { get; set; }
[Key("steam_session_ticket")]
public string SteamSessionTicket { get; set; }
}

View File

@@ -7,8 +7,10 @@ public class TransitionAccountData
{
[Key("social_account_id")]
public string SocialAccountId { get; set; }
[Key("social_account_type")]
public string SocialAccountType { get; set; }
[Key("connected_viewer_id")]
public string ConnectedViewerId { get; set; }
}