1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00

Merge pull request #194 from DarthAffe/Layouts

Small layout fixes
This commit is contained in:
Robert Beekman 2021-04-02 00:04:50 +02:00 committed by GitHub
commit 7f0ca72c7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 1 deletions

View File

@ -7,7 +7,6 @@
<xsd:element name="Description" type="xsd:string" />
<xsd:element name="Author" type="xsd:string" />
<xsd:element name="Type" type="xsd:string" />
<xsd:element name="Lighting" type="xsd:string" />
<xsd:element name="Vendor" type="xsd:string" />
<xsd:element name="Model" type="xsd:string" />
<xsd:element name="Shape" type="xsd:string" />

View File

@ -30,6 +30,12 @@ namespace RGB.NET.Layout
[XmlElement("Description")]
public string? Description { get; set; }
/// <summary>
/// Gets or sets the author of the <see cref="DeviceLayout"/>.
/// </summary>
[XmlElement("Author")]
public string? Author { get; set; }
/// <summary>
/// Gets or sets the <see cref="RGBDeviceType"/> of the <see cref="DeviceLayout"/>.
/// </summary>

View File

@ -15,6 +15,11 @@ namespace RGB.NET.Layout
/// </summary>
string? Description { get; }
/// <summary>
/// Gets or sets the author of the <see cref="IDeviceLayout"/>.
/// </summary>
string? Author { get; }
/// <summary>
/// Gets or sets the <see cref="RGBDeviceType"/> of the <see cref="IDeviceLayout"/>.
/// </summary>