mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-07-01 00:37:37 +00:00
23 lines
500 B
C#
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; }
|
|
|
|
}
|
|
}
|