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; } } }