old_flsystem/类库/Api.Framework/Model/fl_group_person.cs

33 lines
642 B
C#

using Api.Framework.SDK;
using Api.Framework.Tools;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Api.Framework.Model
{
/// <summary>
/// 群管理
/// </summary>
public class fl_group_person:base_model
{
/// <summary>
/// 用户ID
/// </summary>
public long mid { get; set; }
/// <summary>
/// 群号
/// </summary>
public string groupid { get; set; }
/// <summary>
/// 群名
/// </summary>
public string groupname { get; set; }
}
}