11 lines
198 B
C#
11 lines
198 B
C#
using System;
|
|
|
|
namespace gswi.Configuration
|
|
{
|
|
public class APISettings
|
|
{
|
|
public bool RedirectToHTTPS { get; set; }
|
|
public APIVersionSettings ApiVersion { get; set; }
|
|
}
|
|
}
|