mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-14 13:44:47 +00:00
11 lines
221 B
C#
11 lines
221 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SocketIOClient.JsonSerializer
|
|
{
|
|
public class JsonSerializeResult
|
|
{
|
|
public string Json { get; set; }
|
|
public IList<byte[]> Bytes { get; set; }
|
|
}
|
|
}
|