using System.Collections.Generic; namespace UserFission.Entitys { /// /// 进群设置的基础类 /// public class wx_info { /// /// 是否禁用 /// public bool onoff { get; set; } /// /// 群id /// public List groupIds { get; set; } public wx_info() { onoff = false; groupIds = new List(); } } }