sharee.bike-App/TINKLib/Model/Device/IAppInfo.cs
2021-05-13 20:03:07 +02:00

15 lines
391 B
C#

using System;
namespace TINK.Model.Device
{
/// <summary> Interface to get version info. </summary>
public interface IAppInfo
{
/// <summary> Gets the app version to display to user.</summary>
Version Version { get; }
/// <summary> Gets the URL to the app store. </summary>
/// <value>The store URL.</value>
string StoreUrl { get; }
}
}