sharee.bike-App/TINKLib/Model/Device/IDevice.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

10 lines
216 B
C#

namespace TINK.Model.Device
{
public interface IDevice
{
/// <summary> Gets unitque device identifier. </summary>
/// <returns>Gets the identifies specifying device.</returns>
string GetIdentifier();
}
}