mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-31 18:02:40 +01:00
11 lines
225 B
C#
11 lines
225 B
C#
#pragma warning disable CA1040 // Avoid empty interfaces
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
/// <summary>
|
|
/// The item has screenshots.
|
|
/// </summary>
|
|
public interface IHasScreenshots
|
|
{
|
|
}
|
|
}
|