using System.Text.Json.Serialization; namespace CatLink.Models { public class MechaInfo { [JsonPropertyName("IsJoin")] public bool IsJoin { get; set; } [JsonPropertyName("IpAddress")] public uint IpAddress { get; set; } [JsonPropertyName("MusicID")] public int MusicID { get; set; } [JsonPropertyName("Entrys")] public List Entrys { get; set; } = new(); [JsonPropertyName("UserIDs")] public List UserIDs { get; set; } = new(); [JsonPropertyName("UserNames")] public List UserNames { get; set; } = new(); [JsonPropertyName("IconIDs")] public List IconIDs { get; set; } = new(); [JsonPropertyName("FumenDifs")] public List FumenDifs { get; set; } = new(); [JsonPropertyName("Rateing")] public List Rateing { get; set; } = new(); [JsonPropertyName("ClassValue")] public List ClassValue { get; set; } = new(); [JsonPropertyName("MaxClassValue")] public List MaxClassValue { get; set; } = new(); [JsonPropertyName("UserType")] public List UserType { get; set; } = new(); } }