IHasAwards.cs 340 B

123456789101112131415
  1. 
  2. namespace MediaBrowser.Controller.Entities
  3. {
  4. /// <summary>
  5. /// Interface IHasAwards
  6. /// </summary>
  7. public interface IHasAwards
  8. {
  9. /// <summary>
  10. /// Gets or sets the awards summary.
  11. /// </summary>
  12. /// <value>The awards summary.</value>
  13. string AwardSummary { get; set; }
  14. }
  15. }