web-app-template/backend/app/app.Configuration/APIVersionSettings.cs

16 lines
338 B
C#
Raw Permalink Normal View History

2022-02-20 13:43:25 +01:00
using System;
namespace app.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}";
}
}
}