mirror of
https://github.com/FoxRefire/WVCore.Server.git
synced 2026-04-02 15:28:15 +00:00
20 lines
371 B
C#
20 lines
371 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WVCore.Server
|
|
{
|
|
class ChallengeResonse
|
|
{
|
|
public string ChallengeBase64 { get; set; }
|
|
}
|
|
|
|
internal class ApiResponse
|
|
{
|
|
public string PSSH { get; set; }
|
|
public List<string> Keys { get; set; }
|
|
}
|
|
}
|