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 Children { get; set; } public ICollection MediaFiles { get; set; } public ImageFolderDuration ImageFolderDuration { get; set; } public string Etag { get; set; } }