aboutsummaryrefslogtreecommitdiffstats
path: root/src/server/Models/Results/ErrorResult.cs
blob: edd447c00855b6c15b4be75e12fac254c893f657 (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 = "Something went wrong", string message = "Please try again soon")
        {
            Title = title;
            Message = message;
        }

        public string Title { get; set; }
        public string Message { get; set; }
    }
}