mirror of
https://github.com/TbT480jcspy/Iris-Rec-2023-Server-Code.git
synced 2026-09-08 14:41:24 -07:00
MOVEMENT
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace ir23.Data
|
||||
{
|
||||
public class PlatformData
|
||||
{
|
||||
[JsonPropertyName("Id")] public long Id { get; set; }
|
||||
[JsonPropertyName("platform")] public int platform { get; set; }
|
||||
[JsonPropertyName("platformId")] public string platformId { get; set; }
|
||||
[JsonPropertyName("accountId")] public long accountId { get; set; }
|
||||
[JsonPropertyName("lastLoginTime")] public DateTime lastLoginTime { get; set; } = DateTime.UtcNow;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user