using System.Collections.Generic; namespace TEAMModelOS.SDK { public class ErrorModel { public int code { get; set; } public string message { get; set; } public Dictionary<string, object> data { get; set; } = null; } }