jellyfin/MediaBrowser.Controller/Entities/IItemByName.cs

17 lines
359 B
C#
Raw Normal View History

using MediaBrowser.Model.Dto;
using System;
using System.Collections.Generic;
2013-06-27 21:29:58 +02:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Marker interface
/// </summary>
public interface IItemByName
{
ItemByNameCounts ItemCounts { get; set; }
Dictionary<Guid, ItemByNameCounts> UserItemCounts { get; set; }
2013-06-27 21:29:58 +02:00
}
}