11 lines
248 B
C#
11 lines
248 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AccountManagement.Application.Contracts.SubAccount
|
|
{
|
|
public class AssignPermissionsToRole
|
|
{
|
|
public long RoleId { get; set; }
|
|
public List<int> Permissions { get; set; }
|
|
}
|
|
}
|