This repository has been archived on 2023-02-13. You can view files and clone it, but cannot push or open issues or pull requests.
gswi-server/gswi.Configuration/APIVersionSettings.cs

16 lines
339 B
C#
Raw Normal View History

2022-02-20 19:04:11 +01:00
using System;
namespace gswi.Configuration
{
public class APIVersionSettings
{
public string Major { get; set; }
public string Minor { get; set; }
public string Micro { get; set; }
public override string ToString() {
return $"{this.Major}.{this.Minor}.{this.Micro}";
}
}
}