Files
ShrlAlgoToolkit/WPFUI.Test/Web/DataVO.cs
2026-01-01 10:02:59 +08:00

17 lines
387 B
C#

using Newtonsoft.Json;
namespace WPFUI.Test
{
[Serializable]
public class DataVO
{
[JsonProperty("publicKey")]
public string PublicKey { get; set; } = string.Empty;
[JsonProperty("uuid")]
public string UUID { get; set; } = string.Empty;
public string Token { get; set; }
public UserInfoVO UserInfoVO { get; set; }
}
}