1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2025-07-01 00:37:37 +00:00
Files
MpcNET/Sources/MpcNET/SerializedResponse.cs
2021-10-03 17:53:58 +02:00

23 lines
500 B
C#

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; }
}
}