mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
25 lines
792 B
C#
25 lines
792 B
C#
using System;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Wabbajack.Networking.NexusApi.DTOs;
|
|
|
|
public class ValidateInfo
|
|
{
|
|
[JsonPropertyName("user_id")] public int UserId { get; set; }
|
|
|
|
[JsonPropertyName("key")] public string Key { get; set; } = "";
|
|
|
|
[JsonPropertyName("name")] public string Name { get; set; } = "";
|
|
|
|
[JsonPropertyName("is_premium?")] public bool _IsPremium { get; set; }
|
|
|
|
[JsonPropertyName("is_supporter?")] public bool _IsSupporter { get; set; }
|
|
|
|
[JsonPropertyName("email")] public string Email { get; set; } = "";
|
|
|
|
[JsonPropertyName("profile_url")] public Uri? ProfileUrl { get; set; }
|
|
|
|
[JsonPropertyName("is_supporter")] public bool IsSupporter { get; set; }
|
|
|
|
[JsonPropertyName("is_premium")] public bool IsPremium { get; set; }
|
|
} |