mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-11 19:44:52 +00:00
22 lines
403 B
C#
22 lines
403 B
C#
using PepperDash.Core;
|
|
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
|
|
/// <summary>
|
|
/// Defines the contract for device make and model information
|
|
/// </summary>
|
|
public interface IMakeModel : IKeyed
|
|
{
|
|
/// <summary>
|
|
/// Gets the make of the device
|
|
/// </summary>
|
|
string DeviceMake { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the model of the device
|
|
/// </summary>
|
|
string DeviceModel { get; }
|
|
}
|
|
} |