blob: 445d338d729d9e0729c85fef7b5f2fe090bbd66f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
namespace IOL.GreatOffice.Api.Data.Models;
public class KnownProblemModel
{
public KnownProblemModel(string title = default, string subtitle = default, Dictionary<string, string> errors = default) {
Title = title;
Subtitle = subtitle;
Errors = errors;
}
public string Title { get; set; }
public string Subtitle { get; set; }
public Dictionary<string, string> Errors { get; set; }
public string TraceId { get; set; }
public string RequestId { get; set; }
}
|