using System;
using System.Xml.Serialization;
using RGB.NET.Core;
namespace RGB.NET.Layout
{
///
/// Represents the serializable image-data of a specific .
///
[Serializable]
[XmlRoot("LedImage")]
public class LedImage
{
///
/// Gets or sets the Id of the .
///
[XmlAttribute("Id")]
public string? Id { get; set; }
///
/// Gets or sets the image of the .
///
[XmlAttribute("Image")]
public string? Image { get; set; }
}
}