using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
///
/// 用户角色选择
///
public class UserRoleSelected
{
///
///
///
public long UserID { get; set; }
///
///
///
public long RoleID { get; set; }
///
///
///
public bool Selected { get; set; }
}
}