summaryrefslogtreecommitdiffstats
path: root/server/src/Data/Results/ErrorResult.cs
blob: fd2fd6a15aad177e6067132072afa9830b500550 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace IOL.GreatOffice.Api.Data.Results;

public class ErrorResult
{
	public ErrorResult(string title = default, string text = default) {
		Title = title;
		Text = text;
	}

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