sharee.bike-App/TINKLib/Model/Device/IAppInfo.cs

15 lines
355 B
C#
Raw Normal View History

2021-05-13 20:03:07 +02:00
using System;
namespace TINK.Model.Device
{
2022-09-06 16:08:19 +02:00
/// <summary> Interface to get version info. </summary>
public interface IAppInfo
{
/// <summary> Gets the app version to display to user.</summary>
Version Version { get; }
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Gets the URL to the app store. </summary>
/// <value>The store URL.</value>
2021-05-13 20:03:07 +02:00
string StoreUrl { get; }
2022-09-06 16:08:19 +02:00
}
2021-05-13 20:03:07 +02:00
}