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