mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-08 17:24:47 +00:00
chore: move interfaces to their own files
This commit is contained in:
22
src/PepperDash.Essentials.Core/Devices/IMakeModel.cs
Normal file
22
src/PepperDash.Essentials.Core/Devices/IMakeModel.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user