aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasAwards.cs
blob: 6661702fa5982209a491c19f59ca4f836e93ffb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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; }
    }
}