LASAPlatform/OpenAuth.App/ServiceApp/Response/ModelConfig.cs

21 lines
578 B
C#
Raw Permalink Normal View History

2025-12-16 13:54:22 +08:00
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; }
}
}