using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIP_Models
{
///
/// 检测结果枚举类
///
public enum InspectionResult
{
///
/// 合格
///
Qualified = 1,
///
/// 不合格
///
Disqualification = 2
}
}