summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-05-25 23:40:54 +1000
committerJake Mannens <jake@asger.xyz>2026-05-25 23:40:54 +1000
commit4d7f2c538585422c56a9562da1612c7739526ac0 (patch)
tree0dbd52bc5e2a06fd2f5d2cf7b8713a781cbfc4ae
parent9a51a67fad41efad8c55efb6fa472a1c3eb0ce9e (diff)
Added IngestStatistics type
-rw-r--r--Statistics.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Statistics.cs b/Statistics.cs
new file mode 100644
index 0000000..f59a2f6
--- /dev/null
+++ b/Statistics.cs
@@ -0,0 +1,6 @@
+namespace HyperBooru.ApiModels;
+
+public record IngestStatistics {
+ public int TotalMediaCount { get; set; }
+ public int UntaggedMediaCount { get; set; }
+}