11 lines
294 B
C#

namespace EnvelopeGenerator.Web.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";
}
}