Archived
1
0
This repository has been archived on 2025-01-15. You can view files and clone it, but cannot push or open issues or pull requests.
2024-07-09 00:50:23 +02:00

7 lines
236 B
C#

namespace VRCOSCRouter;
public struct Endpoint(string vrcEndpoint, string programEndpoint, Type type)
{
public readonly string VrcEndpoint = vrcEndpoint, ProgramEndpoint = programEndpoint;
public readonly Type Type = type;
}