mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-03 20:03:12 +01:00
16 lines
359 B
C#
16 lines
359 B
C#
using MediaBrowser.Model.Dto;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
/// <summary>
|
|
/// Marker interface
|
|
/// </summary>
|
|
public interface IItemByName
|
|
{
|
|
ItemByNameCounts ItemCounts { get; set; }
|
|
|
|
Dictionary<Guid, ItemByNameCounts> UserItemCounts { get; set; }
|
|
}
|
|
}
|