mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-09-06 08:07:22 +08:00
Refactor face clustering service and related interfaces
This commit is contained in:
@@ -12,11 +12,4 @@ public interface IUserManagementService
|
||||
Task<UserResponse> UpdateUserAsync(int id, string userName, string email, string role);
|
||||
Task<bool> DeleteUserAsync(int id);
|
||||
Task<BatchDeleteResult> BatchDeleteUsersAsync(List<int> ids);
|
||||
}
|
||||
|
||||
public class BatchDeleteResult
|
||||
{
|
||||
public int SuccessCount { get; set; }
|
||||
public int FailedCount { get; set; }
|
||||
public List<int> FailedIds { get; set; } = new();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user