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
348 B
12 lines
348 B
namespace leak_test_project.Models
|
|
{
|
|
public class InOutItem
|
|
{
|
|
public string Address { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>현재 값 (ON=true, OFF=false). DIO 실시간 상태 표시용.</summary>
|
|
public bool Value { get; set; }
|
|
}
|
|
}
|
|
|