31 lines
614 B
C#
31 lines
614 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace CouponsSend.Entitys
|
|||
|
{
|
|||
|
public class Group
|
|||
|
{
|
|||
|
public string groupid { get; set; }
|
|||
|
|
|||
|
public string maxid { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 群昵称
|
|||
|
/// </summary>
|
|||
|
public string name { get; set; }
|
|||
|
|
|||
|
public string markname { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 群号
|
|||
|
/// </summary>
|
|||
|
public string uin { get; set; }
|
|||
|
|
|||
|
public int type { get; set; }
|
|||
|
|
|||
|
public string gz { get; set; }
|
|||
|
}
|
|||
|
}
|