7 lines
181 B
C#
7 lines
181 B
C#
namespace RelayServer.Models;
|
|
|
|
public class SocketChannelList
|
|
{
|
|
public required string Type { get; set; }
|
|
public required List<SocketChannelInfo> Channels { get; set; }
|
|
} |