summaryrefslogtreecommitdiffstats
path: root/src/server/Models/Result/ErrorResult.cs
blob: 64c5a2856ceaad613bc1fe15db14ab531632eee3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace IOL.BookmarkThing.Server.Models.Result;

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