Year.cs 382 B

123456789101112131415161718
  1. 
  2. namespace MediaBrowser.Controller.Entities
  3. {
  4. /// <summary>
  5. /// Class Year
  6. /// </summary>
  7. public class Year : BaseItem
  8. {
  9. /// <summary>
  10. /// Gets the user data key.
  11. /// </summary>
  12. /// <returns>System.String.</returns>
  13. public override string GetUserDataKey()
  14. {
  15. return "Year-" + Name;
  16. }
  17. }
  18. }