mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-08-24 07:22:55 +08:00
15 lines
360 B
C#
15 lines
360 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace OpenAuth.Domain.Interface
|
|||
|
{
|
|||
|
public interface IUserRoleRepository : IRepository<UserRole>
|
|||
|
{
|
|||
|
void DeleteByUser(params int[] userIds);
|
|||
|
void AddUserRole(int userId, params int[] roleIds);
|
|||
|
}
|
|||
|
}
|