using System.Collections.Generic; namespace Ombi.Core.Settings.Models.External { public sealed class TheMovieDbSettings : Ombi.Settings.Settings.Models.Settings { public bool ShowAdultMovies { get; set; } public List ExcludedKeywordIds { get; set; } public List ExcludedMovieGenreIds { get; set; } public List ExcludedTvGenreIds { get; set; } public List OriginalLanguages { get; set; } } }