2014-02-10 13:39:41 -05:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2014-05-06 03:00:16 +01:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-02-10 13:39:41 -05:00
|
|
|
|
using System;
|
2014-01-28 13:37:01 -05:00
|
|
|
|
using System.Collections.Generic;
|
2014-02-08 15:02:35 -05:00
|
|
|
|
using System.Threading;
|
|
|
|
|
|
using System.Threading.Tasks;
|
2014-01-28 13:37:01 -05:00
|
|
|
|
|
2014-02-06 22:10:13 -05:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
2014-01-28 13:37:01 -05:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Interface IHasMetadata
|
|
|
|
|
|
/// </summary>
|
2014-01-30 16:47:13 -05:00
|
|
|
|
public interface IHasMetadata : IHasImages
|
2014-01-28 13:37:01 -05:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the preferred metadata country code.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
|
string GetPreferredMetadataCountryCode();
|
|
|
|
|
|
|
2014-02-04 15:19:29 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets the date modified.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The date modified.</value>
|
|
|
|
|
|
DateTime DateModified { get; }
|
|
|
|
|
|
|
2014-01-28 13:37:01 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the date last saved.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The date last saved.</value>
|
|
|
|
|
|
DateTime DateLastSaved { get; set; }
|
2014-02-02 08:36:31 -05:00
|
|
|
|
|
2015-10-14 01:02:30 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the date last refreshed.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The date last refreshed.</value>
|
|
|
|
|
|
DateTime DateLastRefreshed { get; set; }
|
|
|
|
|
|
|
2014-02-10 13:39:41 -05:00
|
|
|
|
/// <summary>
|
2014-02-13 00:11:54 -05:00
|
|
|
|
/// This is called before any metadata refresh and returns true or false indicating if changes were made
|
2014-02-10 13:39:41 -05:00
|
|
|
|
/// </summary>
|
2014-02-13 00:11:54 -05:00
|
|
|
|
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
|
|
|
|
|
|
bool BeforeMetadataRefresh();
|
2014-03-03 00:11:03 -05:00
|
|
|
|
|
2015-01-27 01:50:40 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Afters the metadata refresh.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
void AfterMetadataRefresh();
|
2015-06-28 21:10:45 -04: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; }
|
2014-01-28 13:37:01 -05:00
|
|
|
|
}
|
|
|
|
|
|
}
|