11 lines
352 B
C#
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; }
|
|
} |