aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Data/Models/KnownProblemModel.cs
blob: 38b3eba152454c28906a00068ddfb8d0067fe6d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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; }
}