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.
10 lines
277 B
C#
10 lines
277 B
C#
namespace EnvelopeGenerator.GeneratorAPI.Models;
|
|
|
|
public class ErrorViewModel
|
|
{
|
|
public string Title { get; init; } = "404";
|
|
|
|
public string Subtitle { get; init; } = "Hmmm...";
|
|
|
|
public string Body { get; init; } = "It looks like one of the developers fell asleep";
|
|
} |