aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasLanguage.cs
blob: a1bb800980b2b4ccccdff0edadb8e1d4e8bb0370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace MediaBrowser.Controller.Entities
{
    /// <summary>
    /// Interface IHasLanguage
    /// </summary>
    public interface IHasLanguage
    {
        /// <summary>
        /// Gets or sets the language.
        /// </summary>
        /// <value>The language.</value>
        string Language { get; set; }
    }
}