IHasUserData.cs 325 B

123456789101112131415
  1. 
  2. namespace MediaBrowser.Controller.Entities
  3. {
  4. /// <summary>
  5. /// Interface IHasUserData
  6. /// </summary>
  7. public interface IHasUserData
  8. {
  9. /// <summary>
  10. /// Gets the user data key.
  11. /// </summary>
  12. /// <returns>System.String.</returns>
  13. string GetUserDataKey();
  14. }
  15. }