using System;
using System.Xml.Serialization;
namespace RGB.NET.Core.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; }
}
}