mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
56 lines
1.6 KiB
C#
56 lines
1.6 KiB
C#
using System.Collections.Generic;
|
|
using RGB.NET.Core;
|
|
|
|
namespace RGB.NET.Layout
|
|
{
|
|
public interface IDeviceLayout
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the name of the <see cref="IDeviceLayout"/>.
|
|
/// </summary>
|
|
string? Name { get; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the description of the <see cref="IDeviceLayout"/>.
|
|
/// </summary>
|
|
string? Description { get; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the <see cref="RGBDeviceType"/> of the <see cref="IDeviceLayout"/>.
|
|
/// </summary>
|
|
RGBDeviceType Type { get; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the vendor of the <see cref="IDeviceLayout"/>.
|
|
/// </summary>
|
|
string? Vendor { get; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the model of the <see cref="IDeviceLayout"/>.
|
|
/// </summary>
|
|
string? Model { get; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the <see cref="Core.Shape"/> of the <see cref="IDeviceLayout"/>.
|
|
/// </summary>
|
|
Shape Shape { get; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the width of the <see cref="IDeviceLayout"/>.
|
|
/// </summary>
|
|
double Width { get; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the height of the <see cref="IDeviceLayout"/>.
|
|
/// </summary>
|
|
double Height { get; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a list of <see cref="ILedLayout"/> representing all the <see cref="Led"/> of the <see cref="IDeviceLayout"/>.
|
|
/// </summary>
|
|
IEnumerable<ILedLayout> Leds { get; }
|
|
|
|
object? CustomData { get; }
|
|
}
|
|
}
|