Replaced "EnvelopeGenerator.WebUI" with "EnvelopeGenerator.Server" and "EnvelopeGenerator.WebUI.Client" with "EnvelopeGenerator.Server.Client". Updated project entries, solution configuration platforms, and nested projects to reflect these changes.
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;
|
|
}
|