using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XdCxRhDw.Dto
{
///
/// 检测计算DTO
///
public class DetectDto
{
///
/// 数据文件1
///
public String file1 { get; set; }
public DmcType dmcType { get; set; }
}
///
/// 检测类型
///
public enum DmcType
{
DAMA=1,
IBS=2,
Ky5758=3
}
}