DTOs for index mostly done, doing DB models
This commit is contained in:
18
SVSim.EmulatedEntrypoint/Models/Dtos/Internal/DataHeaders.cs
Normal file
18
SVSim.EmulatedEntrypoint/Models/Dtos/Internal/DataHeaders.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using MessagePack;
|
||||
|
||||
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Internal;
|
||||
|
||||
[MessagePackObject]
|
||||
public class DataHeaders
|
||||
{
|
||||
[Key("short_udid")]
|
||||
public ulong ShortUdid { get; set; }
|
||||
[Key("viewer_id")]
|
||||
public ulong 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user