using System; using System.Collections.Generic; using System.ComponentModel; using System.Xml.Serialization; namespace RGB.NET.Core.Layout { /// /// Represents the serializable collection of for a specific layout. /// [Serializable] [XmlRoot("LedImageLayout")] public class LedImageLayout { /// /// Gets or sets the layout of the . /// [XmlAttribute("Layout")] [DefaultValue(null)] public string Layout { get; set; } /// /// Gets or sets a list of representing the images of all the of the represented layout. /// [XmlArray("LedImages")] public List LedImages { get; set; } = new List(); } }