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