mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 23:01:52 +01:00
30 lines
615 B
C#
30 lines
615 B
C#
using Borepin.Service.Versioning;
|
|
using Xamarin.Essentials;
|
|
|
|
namespace Borepin.iOS.Services
|
|
{
|
|
public class VersioningService : IVersioningService
|
|
{
|
|
#region Constructors
|
|
public VersioningService()
|
|
{
|
|
VersionTracking.Track();
|
|
}
|
|
#endregion
|
|
public string CurrentBuild
|
|
{
|
|
get
|
|
{
|
|
return VersionTracking.CurrentBuild;
|
|
}
|
|
}
|
|
|
|
public string CurrentVersion
|
|
{
|
|
get
|
|
{
|
|
return VersionTracking.CurrentVersion;
|
|
}
|
|
}
|
|
}
|
|
} |