using System;
using System.Collections.Generic;
using System.Text;
using GxPress.EnumConst;
namespace GxPress.Request.App.GroupUser
{
///
/// 修改小组成员
///
public class GroupUserUpRequest
{
///
/// 小组成员ID
///
public int Id { get; set; }
///
/// 角色类型 1 超级管理员 2 管理员 3普通用户
///
public GroupUserRoleTyeConst RoleId { get; set; }
}
}