using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WeChatCore.Enum { /// /// 联系人类型 /// public enum ContactType { /// /// 公众号等 /// PublicContact = 0, /// /// 联系人 /// PersonContact = 1, /// /// 微信群 /// GroupContact = 2 } }