This commit is contained in:
gamer147
2024-09-05 08:32:54 -04:00
parent 8d62c9f238
commit ee7e276036
45 changed files with 1506 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
[MessagePackObject]
public class DataHeaders
{
[Key("short_udid")]
public int ShortUdid { get; set; }
[Key("viewer_id")]
public int ViewerId { get; set; }
[Key("sid")]
public string Sid { get; set; }
[Key("servertime")]
public long Servertime { get; set; }
[Key("result_code")]
public int ResultCode { get; set; }
}