AttributeType.cs 145 B

123456789
  1. namespace BluetoothLENet
  2. {
  3. public enum AttributeType
  4. {
  5. Service = 0,
  6. Characteristic = 1,
  7. Descriptor = 2
  8. }
  9. }