2016-03-27 21:11:27 +00:00
|
|
|
|
using System;
|
2016-09-21 17:07:18 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
2014-02-07 03:10:13 +00:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
2014-01-28 18:37:01 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface IHasMetadata
|
|
|
|
|
/// </summary>
|
2014-01-30 21:47:13 +00:00
|
|
|
|
public interface IHasMetadata : IHasImages
|
2014-01-28 18:37:01 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the preferred metadata country code.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
string GetPreferredMetadataCountryCode();
|
|
|
|
|
|
2014-02-04 20:19:29 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the date modified.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The date modified.</value>
|
2016-07-24 16:46:17 +00:00
|
|
|
|
DateTime DateModified { get; set; }
|
2014-02-04 20:19:29 +00:00
|
|
|
|
|
2014-01-28 18:37:01 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the date last saved.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The date last saved.</value>
|
|
|
|
|
DateTime DateLastSaved { get; set; }
|
2014-02-02 13:36:31 +00:00
|
|
|
|
|
2017-06-03 07:36:32 +00:00
|
|
|
|
SourceType SourceType { get; }
|
2016-04-08 18:32:38 +00:00
|
|
|
|
|
2015-10-14 05:02:30 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the date last refreshed.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The date last refreshed.</value>
|
|
|
|
|
DateTime DateLastRefreshed { get; set; }
|
2016-08-12 19:30:04 +00:00
|
|
|
|
|
2014-02-10 18:39:41 +00:00
|
|
|
|
/// <summary>
|
2014-02-13 05:11:54 +00:00
|
|
|
|
/// This is called before any metadata refresh and returns true or false indicating if changes were made
|
2014-02-10 18:39:41 +00:00
|
|
|
|
/// </summary>
|
2014-02-13 05:11:54 +00:00
|
|
|
|
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
|
|
|
|
|
bool BeforeMetadataRefresh();
|
2014-03-03 05:11:03 +00:00
|
|
|
|
|
2015-01-27 06:50:40 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Afters the metadata refresh.
|
|
|
|
|
/// </summary>
|
|
|
|
|
void AfterMetadataRefresh();
|
2015-06-29 01:10:45 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether [supports people].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [supports people]; otherwise, <c>false</c>.</value>
|
|
|
|
|
bool SupportsPeople { get; }
|
2016-05-09 03:13:38 +00:00
|
|
|
|
|
|
|
|
|
bool RequiresRefresh();
|
2016-07-24 16:46:17 +00:00
|
|
|
|
|
2016-08-13 05:49:00 +00:00
|
|
|
|
bool EnableRefreshOnDateModifiedChange { get; }
|
2016-08-12 19:30:04 +00:00
|
|
|
|
|
|
|
|
|
string PresentationUniqueKey { get; set; }
|
|
|
|
|
|
|
|
|
|
string GetPresentationUniqueKey();
|
|
|
|
|
string CreatePresentationUniqueKey();
|
2016-08-14 21:29:35 +00:00
|
|
|
|
bool StopRefreshIfLocalMetadataFound { get; }
|
2016-08-26 17:24:04 +00:00
|
|
|
|
|
|
|
|
|
int? GetInheritedParentalRatingValue();
|
|
|
|
|
int InheritedParentalRatingValue { get; set; }
|
2016-09-21 17:07:18 +00:00
|
|
|
|
List<string> GetInheritedTags();
|
2016-09-21 21:09:14 +00:00
|
|
|
|
List<string> InheritedTags { get; set; }
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|