summaryrefslogtreecommitdiffstats
path: root/src/server/Models/General/ApiSpecDocument.cs
blob: 5f5c9df2f01065dc8b33a5c21a1179906d6bcdfb (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace IOL.BookmarkThing.Server.Models.General;

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