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

View File

@@ -0,0 +1,8 @@
namespace Foxel.Models;
public class BatchDeleteResult
{
public int SuccessCount { get; set; }
public int FailedCount { get; set; }
public List<int> FailedIds { get; set; } = new();
}