mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
535 B
15 lines
535 B
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 ImageFolderDuration ImageFolderDuration { get; set; } |
|
public string Etag { get; set; } |
|
}
|
|
|