10 lines
243 B
C#
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;
|
|
}
|
|
}
|