using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.App.ServiceApp.Response { public class ModelConfig { public string path { get; set; } public string encryption_key { get; set; } public Dictionary tags { get; set; } public double conf_thres { get; set; } public int imgsz { get; set; } public string device { get; set; } public int line_width { get; set; } public bool enabled { get; set; } } }