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