1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 09:38:31 +00:00
RGB.NET/RGB.NET.Layout/IDeviceLayout.cs
Robert 6545c25c2d Layouts - Added missing Author property
Layouts - Removed  Lighting element from xsd
2021-04-01 10:46:19 +02:00

61 lines
1.8 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 author of the <see cref="IDeviceLayout"/>.
/// </summary>
public string? Author { 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>
float Width { get; }
/// <summary>
/// Gets or sets the height of the <see cref="IDeviceLayout"/>.
/// </summary>
float 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; }
}
}