namespace EC.Entity.Warning
{
public class WarningBoxModel
{
///
///英文标签
///
public string label { get; set; }
///
/// 原标签位置
///
public int cls { get; set; }
///
/// 相似度
///
public double conf { get; set; }
///
/// 左上角x
///
public double x { get; set; }
///
/// 左上角Y
///
public double y { get; set; }
///
/// 右下角x
///
public double x1 { get; set; }
///
/// 右下角y
///
public double y1 { get; set; }
}
}