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; } } }