7 lines
236 B
C#
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;
|
|
} |