13 lines
282 B
C#
13 lines
282 B
C#
|
|
|||
|
namespace MediaBrowser.Controller.Entities
|
|||
|
{
|
|||
|
public interface IHasShortOverview
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Gets or sets the short overview.
|
|||
|
/// </summary>
|
|||
|
/// <value>The short overview.</value>
|
|||
|
string ShortOverview { get; set; }
|
|||
|
}
|
|||
|
}
|