[CHANGE] Preparing library service

This commit is contained in:
max
2025-08-18 01:56:41 +02:00
parent 4dc3ffda36
commit 4df0064978
6 changed files with 72 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
namespace Manager.App.Models.Library;
public record LibraryInformation
{
public DateTime CreatedAtUtc { get; set; }
public DateTime LastModifiedUtc { get; set; }
public string LibraryPath { get; set; } = "";
public long TotalMedia { get; set; }
public long TotalChannels { get; set; }
public long TotalSizeBytes { get; set; }
}