DMBluetoothTag.cs 355 B

12345678910111213141516
  1. namespace InABox.DigitalMatter
  2. {
  3. public abstract class DMBluetoothTag : DMObject
  4. {
  5. public byte DataLength { get; set; }
  6. public abstract string Type();
  7. public abstract string ID();
  8. public override string ToString()
  9. {
  10. return string.Format("{0} ({1})", Type(), ID()).Trim();
  11. }
  12. }
  13. }