18 lines
421 B
C#
18 lines
421 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Air.Model.AirAdminViewModel
|
|
{
|
|
public class Bas_InnerUserRoleModel
|
|
{
|
|
public int Uid { get; set; }
|
|
public int Eid { get; set; }
|
|
public string UName { get; set; }
|
|
public string RolesNames { get; set; }
|
|
public string RoleIds { get; set; }
|
|
}
|
|
}
|