using MediaBrowser.Model.Dto; using System; using System.Collections.Generic; namespace MediaBrowser.Controller.Entities { /// /// Marker interface /// public interface IItemByName { Dictionary UserItemCounts { get; set; } } public interface IHasDualAccess : IItemByName { bool IsAccessedByName { get; } } public static class IItemByNameExtensions { public static ItemByNameCounts GetItemByNameCounts(this IItemByName item, User user) { if (user == null) { throw new ArgumentNullException("user"); } ItemByNameCounts counts; if (item.UserItemCounts.TryGetValue(user.Id, out counts)) { return counts; } return null; } } }