* add new columns * store local content ratings * display and search content ratings * add content_rating to search docs * sync content rating from jellyfin, emby, plex * force sync content rating for all libraries * code cleanup
10 lines
143 B
C#
10 lines
143 B
C#
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public enum MetadataKind
|
|
{
|
|
Fallback = 0,
|
|
Sidecar = 1,
|
|
External = 2
|
|
}
|
|
}
|