Files
ersatztv/ErsatzTV.Core/Domain/Library/LibraryFolder.cs
T

15 lines
470 B
C#

namespace ErsatzTV.Core.Domain;
public class LibraryFolder
{
public int Id { get; set; }
public string Path { get; set; }
public int LibraryPathId { get; set; }
public LibraryPath LibraryPath { get; set; }
public int? ParentId { get; set; }
public LibraryFolder Parent { get; set; }
public ICollection<LibraryFolder> Children { get; set; }
public ICollection<MediaFile> MediaFiles { get; set; }
public string Etag { get; set; }
}