Introduced new models (`SignatureDto`, `SignatureCaptureDto`, `EnvelopeReceiverDto`) to support a signature-based workflow. Added services for handling API interactions (`SignatureService`, `AuthService`, `DocumentService`, `EnvelopeReceiverService`, `SignatureCacheService`). Enhanced configuration with `ApiOptions` and `PdfViewerOptions`. Integrated DevExpress features with custom data connection providers, in-memory report storage, and font loading utilities. Marked `AnnotationDto` and `AnnotationService` as `[Obsolete]` in favor of newer implementations. Added detailed documentation for coordinate systems, unit conversions, and usage scenarios.
11 lines
249 B
C#
11 lines
249 B
C#
namespace EnvelopeGenerator.WebUI.Client.Options;
|
|
|
|
public class ApiOptions
|
|
{
|
|
public const string SectionName = "ApiOptions";
|
|
|
|
public string BaseUrl { get; set; } = string.Empty;
|
|
|
|
public bool UsePredefinedReports { get; set; } = false;
|
|
}
|