1234567891011121314151617181920212223 |
- using InABox.Core;
- namespace Comal.Classes
- {
- public interface IDigitalKey : IEntity
- {
- string Code { get; set; }
- string Name { get; set; }
- string Model { get; set; }
- string MacAddress { get; set; }
- string Service { get; set; }
-
- string Characteristic { get; set; }
-
- string Key { get; set; }
- bool Active { get; set; }
- }
- }
|