Introduced new models in EnvelopeGenerator.GeneratorAPI.Models: - Auth, ContactLink, Culture, Cultures, CustomImages, ErrorViewModel, Image, MainViewModel, and TFARegParams. These provide foundational structures for authentication, localization, error handling, image management, and contact links. All changes are new file additions.
7 lines
124 B
C#
7 lines
124 B
C#
namespace EnvelopeGenerator.GeneratorAPI.Models;
|
|
|
|
public class MainViewModel
|
|
{
|
|
public string? Title { get; init; }
|
|
}
|