Add ContentType.Parent

Import Series parent when only individual episodes are in library
This commit is contained in:
Michael Bucari-Tovo 2022-06-07 15:27:18 -06:00
parent 30e6deeeaa
commit c48eacd9af
4 changed files with 83 additions and 21 deletions

View file

@ -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
{