2014-01-28 18:37:01 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
|
{
|
|
|
|
|
/// <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>
|
|
|
|
|
DateTime DateModified { get; }
|
|
|
|
|
|
2014-01-28 18:37:01 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the locked fields.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The locked fields.</value>
|
|
|
|
|
List<MetadataFields> LockedFields { get; }
|
|
|
|
|
|
|
|
|
|
/// <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
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Determines whether [is save local metadata enabled].
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns><c>true</c> if [is save local metadata enabled]; otherwise, <c>false</c>.</returns>
|
|
|
|
|
bool IsSaveLocalMetadataEnabled();
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|