Files
Relay/RelayServer/Models/SocketChannelList.cs
2026-03-22 01:54:52 -04:00

7 lines
181 B
C#

namespace RelayServer.Models;
public class SocketChannelList
{
public required string Type { get; set; }
public required List<SocketChannelInfo> Channels { get; set; }
}