mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-14 13:47:37 +08:00
13 lines
428 B
C#
13 lines
428 B
C#
namespace Foxel.Models.Response.Face;
|
|
|
|
public record FaceClusterResponse
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public string? PersonName { get; set; }
|
|
public string? Description { get; set; }
|
|
public int FaceCount { get; set; }
|
|
public string? ThumbnailPath { get; set; }
|
|
public DateTime LastUpdatedAt { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
} |