namespace IOL.GreatOffice.Api.Data.Models; public class KnownProblemModel { public KnownProblemModel(string title = default, string subtitle = default, Dictionary errors = default) { Title = title; Subtitle = subtitle; Errors = errors; } public string Title { get; set; } public string Subtitle { get; set; } public Dictionary Errors { get; set; } public string TraceId { get; set; } }