using System; using System.Collections.Generic; using MediaBrowser.Model.Entities; namespace MediaBrowser.Model.Users { public class User : BaseItem { public string MaxParentalRating { get; set; } private Dictionary _ItemData = new Dictionary(); public Dictionary ItemData { get { return _ItemData; } set { _ItemData = value; } } } }