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