Files
cms-core-active/CMS_CORE_Library/Demo/Models/NcProcessModel.cs
T
2017-11-07 07:50:00 +00:00

18 lines
366 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CMS_CORE.Demo.Models
{
class NcProcessModel
{
public int id { get; set; }
public string name { get; set; }
public int status;
public int mode;
public int enabled;
}
}