Files
Exception 46589f2ef3 MOVEMENT
2026-05-09 14:13:43 -04:00

14 lines
506 B
C#

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;
}
}