?
This commit is contained in:
19
Models/RecruitRecord.cs
Normal file
19
Models/RecruitRecord.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace CatLink.Models
|
||||
{
|
||||
public class RecruitRecord
|
||||
{
|
||||
[JsonPropertyName("RecruitInfo")]
|
||||
public RecruitInfo RecruitInfo { get; set; } = new();
|
||||
|
||||
[JsonPropertyName("Keychip")]
|
||||
public string Keychip { get; set; } = string.Empty;
|
||||
|
||||
[JsonPropertyName("Server")]
|
||||
public RelayServerInfo Server { get; set; } = new();
|
||||
|
||||
[JsonPropertyName("Time")]
|
||||
public long Time { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user