Replaced all EnvelopeGenerator.GeneratorAPI namespaces with EnvelopeGenerator.API across controllers, models, extensions, middleware, and annotation-related files. Updated using/import statements and namespace declarations accordingly. Added wwwroot folder to project file. Minor code adjustments made for consistency. This unifies API naming for improved clarity and maintainability.
10 lines
268 B
C#
10 lines
268 B
C#
namespace EnvelopeGenerator.API.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";
|
|
} |