21 lines
578 B
C#
21 lines
578 B
C#
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<string, ModelTag> 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; }
|
|
}
|
|
}
|