using System.Collections.Generic; namespace AccountManagement.Application.Contracts.SubAccount { public class AssignPermissionsToRole { public long RoleId { get; set; } public List Permissions { get; set; } } }