web-app-template/backend/app/app.Configuration/APISettings.cs
2022-02-20 13:57:55 +01:00

11 lines
197 B
C#

using System;
namespace app.Configuration
{
public class APISettings
{
public bool RedirectToHTTPS { get; set; }
public APIVersionSettings ApiVersion { get; set; }
}
}