?
This commit is contained in:
31
Models/RecruitInfo.cs
Normal file
31
Models/RecruitInfo.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace CatLink.Models
|
||||
{
|
||||
public class RecruitInfo
|
||||
{
|
||||
[JsonPropertyName("MechaInfo")]
|
||||
public MechaInfo MechaInfo { get; set; } = new();
|
||||
|
||||
[JsonPropertyName("MusicID")]
|
||||
public int MusicID { get; set; }
|
||||
|
||||
[JsonPropertyName("GroupID")]
|
||||
public int GroupID { get; set; }
|
||||
|
||||
[JsonPropertyName("EventModeID")]
|
||||
public bool EventModeID { get; set; }
|
||||
|
||||
[JsonPropertyName("JoinNumber")]
|
||||
public int JoinNumber { get; set; }
|
||||
|
||||
[JsonPropertyName("PartyStance")]
|
||||
public int PartyStance { get; set; }
|
||||
|
||||
[JsonPropertyName("_startTimeTicks")]
|
||||
public long StartTimeTicks { get; set; }
|
||||
|
||||
[JsonPropertyName("_recvTimeTicks")]
|
||||
public long RecvTimeTicks { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user