1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
-
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace ANT_Managed_Library
- {
-
-
-
- public struct ANT_ChannelStatus
- {
-
-
-
- public ANT_ReferenceLibrary.BasicChannelStatusCode BasicStatus;
-
-
-
- public byte networkNumber;
-
-
-
- public ANT_ReferenceLibrary.ChannelType ChannelType;
-
-
-
-
-
-
- public ANT_ChannelStatus(ANT_ReferenceLibrary.BasicChannelStatusCode BasicStatus, byte networkNumber, ANT_ReferenceLibrary.ChannelType ChannelType)
- {
- this.BasicStatus = BasicStatus;
- this.networkNumber = networkNumber;
- this.ChannelType = ChannelType;
- }
- }
- }
|