namespace GlaxOSC; public struct OSCEndpoint { public string Endpoint; public Type Type; public OSC.OnParameterChangeEventHandler? Callback; public OSCEndpoint(string endpoint, Type type, OSC.OnParameterChangeEventHandler? callback) { this.Endpoint = endpoint; this.Type = type; this.Callback = callback; } }