using PepperDash.Core;
namespace PepperDash.Essentials.Core
{
///
/// Defines the contract for device make and model information
///
public interface IMakeModel : IKeyed
{
///
/// Gets the make of the device
///
string DeviceMake { get; }
///
/// Gets the model of the device
///
string DeviceModel { get; }
}
}