Files
YouTube-Manager/Manager.App/Models/Library/LibraryInformation.cs

14 lines
503 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; }
public long DriveTotalSpaceBytes { get; set; }
public long DriveFreeSpaceBytes { get; set; }
public long DriveUsedSpaceBytes { get; set; }
}