Refactor face clustering service and related interfaces

This commit is contained in:
shiyu
2025-06-23 13:01:21 +08:00
parent ec2ff921f9
commit 3d3ecac4ce
14 changed files with 399 additions and 192 deletions
@@ -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();
}
}