12345678910111213141516171819202122232425262728293031323334 |
- using MediaBrowser.Model.Dto;
- using System;
- using System.Collections.Generic;
- namespace MediaBrowser.Controller.Entities
- {
- /// <summary>
- /// Marker interface
- /// </summary>
- public interface IItemByName
- {
- Dictionary<Guid, ItemByNameCounts> UserItemCounts { get; set; }
- }
- 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;
- }
- }
- }
|