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:
22
Sources/MpcNET/SerializedResponse.cs
Normal file
22
Sources/MpcNET/SerializedResponse.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user