11 lines
242 B
C#
11 lines
242 B
C#
namespace EnvelopeGenerator.WebUI.Client.Options;
|
|
|
|
public class ApiOptions
|
|
{
|
|
public const string SectionName = "Api";
|
|
|
|
public string BaseUrl { get; set; } = string.Empty;
|
|
|
|
public bool UsePredefinedReports { get; set; } = false;
|
|
}
|