using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Serialization; namespace PCScreenSavers.Model { [XmlRoot("getScreenParam")] public class WaitInfo { [XmlElement("code")] public string Code; [XmlElement("state")] public string State; [XmlElement("waitTime")] public string WaitTime; [XmlElement("timeInterval")] public string TimeInterval; } }