mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-12-22 15:06:26 +01:00
9 lines
222 B
C#
9 lines
222 B
C#
namespace ShareeBike.Model.Device
|
|
{
|
|
public interface IDevice
|
|
{
|
|
/// <summary> Gets unitque device identifier. </summary>
|
|
/// <returns>Gets the identifies specifying device.</returns>
|
|
string GetIdentifier();
|
|
}
|
|
}
|