IDeviceID.cs 115 B

12345678
  1. using System;
  2. namespace InABox.Mobile
  3. {
  4. public interface IDeviceID
  5. {
  6. string DeviceID();
  7. }
  8. }