Introduce new classes and records in the `EnvelopeGenerator.API.Models` namespace to handle various functionalities: - Add `Auth` record for managing authentication codes. - Introduce `ContactLink` class for hyperlink management. - Add `Culture` and `Cultures` classes for language and culture info. - Implement `CustomImages` class for image management. - Add `EnvelopeReceiverLogin` record for login requests. - Introduce `ErrorViewModel` for error representation. - Add `Image` class for image source and CSS management. - Implement `Login` record for user authentication. - Add `MainViewModel` with a nullable `Title` property. - Introduce PDF annotation classes in `PsPdfKitAnnotation` namespace. - Add `TFARegParams` class for 2FA registration parameters.
7 lines
115 B
C#
7 lines
115 B
C#
namespace EnvelopeGenerator.API.Models;
|
|
|
|
public class MainViewModel
|
|
{
|
|
public string? Title { get; init; }
|
|
}
|