namespace IStation.Dto.Inp { /// /// 元素 /// public class Element { public Element() { } public Element(Element rhs) { this.Id = rhs.Id; } public string Id { get; set; } } }