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.
12 lines
250 B
12 lines
250 B
using System;
|
|
|
|
namespace SSWMS.Common
|
|
{
|
|
[Serializable]
|
|
public class IO_CONTROL_MODEL
|
|
{
|
|
public int DEVICE_ID { get; set; }
|
|
public string DEVICE_CODE { get; set; }
|
|
public string MODEL_STATUS { get; set; }
|
|
}
|
|
}
|