You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
861 B
32 lines
861 B
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Model.Entities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
{
|
|
/// <summary>
|
|
/// Interface IHasMetadata
|
|
/// </summary>
|
|
public interface IHasMetadata : IHasImages
|
|
{
|
|
/// <summary>
|
|
/// Gets the preferred metadata country code.
|
|
/// </summary>
|
|
/// <returns>System.String.</returns>
|
|
string GetPreferredMetadataCountryCode();
|
|
|
|
/// <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; }
|
|
}
|
|
}
|