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; } } }