IDigitalKey.cs 419 B

1234567891011121314151617181920212223
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. public interface IDigitalKey : IEntity
  5. {
  6. string Code { get; set; }
  7. string Name { get; set; }
  8. string Model { get; set; }
  9. string MacAddress { get; set; }
  10. string Service { get; set; }
  11. string Characteristic { get; set; }
  12. string Key { get; set; }
  13. bool Active { get; set; }
  14. }
  15. }