21 lines
526 B
C#
21 lines
526 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using NPOI.SS.Formula.PTG;
|
|
|
|
namespace Tnb.QcMgr.Entities.Dto
|
|
{
|
|
public class TriggerPlan
|
|
{
|
|
public string id { get; set; }
|
|
public string name { get; set; }
|
|
public string code { get; set; }
|
|
public string type { get; set; }
|
|
public string cycle { get; set; }
|
|
public string[] trievent { get; set; }
|
|
public string[] trieventid { get; set; }
|
|
}
|
|
}
|