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.
14 lines
436 B
14 lines
436 B
using System.Collections.Generic; |
|
|
|
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; } |
|
} |
|
}
|
|
|