1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2025-07-01 08:47:36 +00:00

Updates from latest Stylophone code

This commit is contained in:
Difegue
2021-10-03 17:53:58 +02:00
parent 6ee33cd704
commit 6c473b01b7
85 changed files with 2395 additions and 952 deletions

View File

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace MpcNET
{
/// <summary>
///
/// </summary>
public class SerializedResponse
{
/// <summary>
/// Response values.
/// </summary>
public IReadOnlyList<KeyValuePair<string, string>> ResponseValues {get; set;}
/// <summary>
/// Binary Data that can be present in the response.
/// </summary>
public byte[] BinaryData { get; set; }
}
}