18 lines
414 B
C#
18 lines
414 B
C#
using System.Collections.Generic;
|
|
using _0_Framework.Infrastructure;
|
|
|
|
//using _0_Framework.Infrastructure;
|
|
|
|
namespace AccountManagement.Application.Contracts.Role
|
|
{
|
|
public class EditRole : CreateRole
|
|
{
|
|
public long Id { get; set; }
|
|
public List<PermissionDto> MappedPermissions { get; set; }
|
|
|
|
public EditRole()
|
|
{
|
|
Permissions = new List<int>();
|
|
}
|
|
}
|
|
} |