using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// TmcUserCancelResponse. /// public class TmcUserCancelResponse : TopResponse { /// /// 是否成功,如果为false并且没有错误码,表示删除的用户不存在。 /// [XmlElement("is_success")] public bool IsSuccess { get; set; } } }