aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Models/Misc/ApiSpecDocument.cs
blob: 8cf928d1b98b9300f32bd9e9c47c780337f0ccf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace IOL.GreatOffice.Api.Models.Misc;

public class ApiSpecDocument
{
	public string VersionName { get; set; }
	public string SwaggerPath { get; set; }
	public ApiVersion Version { get; set; }
	public OpenApiInfo OpenApiInfo { get; set; }
}