mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 23:35:25 +03:00
17 lines
419 B
C#
17 lines
419 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
using Jellyfin.Data.Entities.Libraries;
|
||
|
|
|
||
|
|
namespace Jellyfin.Data.Interfaces
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// An abstraction representing an entity that has releases.
|
||
|
|
/// </summary>
|
||
|
|
public interface IHasReleases
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Gets a collection containing this entity's releases.
|
||
|
|
/// </summary>
|
||
|
|
ICollection<Release> Releases { get; }
|
||
|
|
}
|
||
|
|
}
|