using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// WeexProjectUploadResponse. /// public class WeexProjectUploadResponse : TopResponse { /// /// error_msg /// [XmlElement("error_msg")] public string ErrorMsg { get; set; } /// /// success /// [XmlElement("is_success")] public bool IsSuccess { get; set; } } }