You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using NFine.Application.Interface;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;
namespace NFine.Application.Models{ /// <summary>
///
/// </summary>
public class ICSInspectionRulesListDto : IElementKey { public int key { get; set; } public string ID { get; set; }
public string RulesID { get; set; } public decimal SetValueMin { get; set; } public decimal SetValueMax { get; set; } public decimal SampleQuantity { get; set; }
public string EATTRIBUTE1 { get; set; } public string EATTRIBUTE2 { get; set; } public string EATTRIBUTE3 { get; set; } }}
|