mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
15 lines
391 B
C#
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; }
|
|||
|
}
|
|||
|
}
|