Files
PerfectTidy_untiy_ios/Assets/SGModule/NetKit/SGModule/Model/TrackData.cs
T
2026-06-12 10:38:10 +08:00

10 lines
243 B
C#

using Newtonsoft.Json;
namespace SGModule.NetKit {
public class TrackData {
[JsonProperty("event")] public string Event;
[JsonProperty("n")] public int N;
[JsonProperty("property")] public string Property;
}
}