using System.Collections.Generic; using RGB.NET.Core; namespace RGB.NET.Layout { public interface IDeviceLayout { /// /// Gets or sets the name of the . /// string? Name { get; } /// /// Gets or sets the description of the . /// string? Description { get; } /// /// Gets or sets the author of the . /// public string? Author { get; } /// /// Gets or sets the of the . /// RGBDeviceType Type { get; } /// /// Gets or sets the vendor of the . /// string? Vendor { get; } /// /// Gets or sets the model of the . /// string? Model { get; } /// /// Gets or sets the of the . /// Shape Shape { get; } /// /// Gets or sets the width of the . /// float Width { get; } /// /// Gets or sets the height of the . /// float Height { get; } /// /// Gets or sets a list of representing all the of the . /// IEnumerable Leds { get; } object? CustomData { get; } } }