aboutsummaryrefslogtreecommitdiffstats
path: root/src/server/Models/Results/ErrorResult.cs
blob: 8d4504fcd44bd381b7c2d9704d73683ba5e02f78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Dough.Models.Results
{
    public class ErrorResult
    {
        public ErrorResult(string title = default, string message = default)
        {
            Title = title;
            Message = message;
        }

        public string Title { get; set; } = "En feil oppstod";
        public string Message { get; set; } = "Vennligst prøv igjen snart";
    }
}