using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiSmartdeviceHasfaceResponse. /// public class OapiSmartdeviceHasfaceResponse : DingTalkResponse { /// /// dingOpenErrcode /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// errorMsg /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 已录入用户列表 /// [XmlArray("userid_list")] [XmlArrayItem("string")] public List UseridList { get; set; } } }