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

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