init
This commit is contained in:
25
Common/DTS.Common/Interface/Sensors/IDigitalOutDbRecord.cs
Normal file
25
Common/DTS.Common/Interface/Sensors/IDigitalOutDbRecord.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using DTS.Common.Enums;
|
||||
using System;
|
||||
|
||||
namespace DTS.Common.Interface.Sensors
|
||||
{
|
||||
public interface IDigitalOutDbRecord
|
||||
{
|
||||
int DatabaseId { get; set; }
|
||||
string SerialNumber { get; set; }
|
||||
double DODelay { get; set; }
|
||||
double DODuration { get; set; }
|
||||
string ModifiedBy { get; set; }
|
||||
DateTime LastModified { get; set; }
|
||||
string ISOCode { get; set; }
|
||||
string ISOChannelName { get; set; }
|
||||
string UserCode { get; set; }
|
||||
string UserChannelName { get; set; }
|
||||
bool Broken { get; set; }
|
||||
bool DoNotUse { get; set; }
|
||||
DigitalOutputModes DOMode { get; set; }
|
||||
bool LimitDuration { get; set; }
|
||||
int Version { get; set; }
|
||||
byte[] TagsBlobBytes { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user