Files
YouTube-Manager/Manager.App/Models/Library/LibraryInformation.cs
2025-08-18 01:56:41 +02:00

11 lines
352 B
C#

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; }
}