using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace UserFission.Entitys { /// /// 进群设置的基础类 /// public class wxinfo { /// /// 是否禁用 /// public bool onoff { get; set; } /// /// 键为群id,值为群名 /// public Dictionary groupInfos { get; set; } public wxinfo() { onoff = false; groupInfos = new Dictionary(); } } }