Files
DP44/Common/DTS.CommonCore/.svn/pristine/56/569e235fc7abd87895c818aa433cfb31915c86e5.svn-base

18 lines
331 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System.ComponentModel.DataAnnotations;
namespace DTS.Common.Interface.Sensors
{
public interface ISensorDbRecord
{
[Key]
int id { get; set; }
short SensorType { get; set; }
[Required]
[StringLength(50)]
string SerialNumber { get; set; }
}
}