aboutsummaryrefslogtreecommitdiffstats
path: root/src/Data/Results/ErrorResult.cs
blob: 60d1b1d002b41c0edab961c59323ec79e6b00521 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace VSH.Data.Results;

public class ErrorResult
{
	public ErrorResult(string title = default, string message = default) {
		Title = title;
		Message = message;
	}

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