aboutsummaryrefslogtreecommitdiffstats
path: root/src/Data/Result/ErrorResult.cs
blob: 3e585b3246dc469d093071b6b9cd07115cd91f1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace IOL.WebApi.Template.Data.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; }
	}
}