Add ContentType.Parent
Import Series parent when only individual episodes are in library
This commit is contained in:
parent
30e6deeeaa
commit
c48eacd9af
4 changed files with 83 additions and 21 deletions
|
|
@ -16,8 +16,14 @@ namespace DataLayer
|
|||
}
|
||||
}
|
||||
|
||||
// enum will be easier than bool to extend later
|
||||
public enum ContentType { Unknown = 0, Product = 1, Episode = 2 }
|
||||
// enum will be easier than bool to extend later.
|
||||
public enum ContentType
|
||||
{
|
||||
Unknown = 0,
|
||||
Product = 1,
|
||||
Episode = 2,
|
||||
Parent = 4,
|
||||
}
|
||||
|
||||
public class Book
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue