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