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.
12 lines
409 B
12 lines
409 B
namespace ErsatzTV.Core.Domain; |
|
|
|
public class MediaItem |
|
{ |
|
public int Id { get; set; } |
|
public int LibraryPathId { get; set; } |
|
public LibraryPath LibraryPath { get; set; } |
|
public List<Collection> Collections { get; set; } |
|
public List<CollectionItem> CollectionItems { get; set; } |
|
public List<TraktListItem> TraktListItems { get; set; } |
|
public MediaItemState State { get; set; } |
|
}
|
|
|