22 lines
608 B
C#
22 lines
608 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TIAM.Entities.Permissions;
|
|
using TIAM.Entities.Users;
|
|
|
|
namespace TIAMWebApp.Shared.Application.Models
|
|
{
|
|
public class AssignPermissionModel
|
|
{
|
|
public AssignedUser AssignedUser { get; set; }
|
|
public PermissionsType PermissionsType { get; set; }
|
|
public AssignPermissionModel(AssignedUser assignedUser, PermissionsType permissionsType) {
|
|
|
|
AssignedUser = assignedUser;
|
|
PermissionsType = permissionsType;
|
|
}
|
|
}
|
|
}
|