mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
16 lines
340 B
C#
16 lines
340 B
C#
|
|
|||
|
namespace MediaBrowser.Controller.Entities
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Interface IHasAwards
|
|||
|
/// </summary>
|
|||
|
public interface IHasAwards
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Gets or sets the awards summary.
|
|||
|
/// </summary>
|
|||
|
/// <value>The awards summary.</value>
|
|||
|
string AwardSummary { get; set; }
|
|||
|
}
|
|||
|
}
|