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