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

15 lines
361 B
C#
Raw Normal View History

2021-05-13 20:03:07 +02:00
using System;
2024-04-09 12:53:23 +02:00
namespace ShareeBike.Model.Device
2021-05-13 20:03:07 +02:00
{
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
}