blob: 742a6a38676a6ebab25fdcbac64e604a0d9e948b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System.Collections.Generic;
using Jellyfin.Database.Implementations.Entities.Libraries;
namespace Jellyfin.Database.Implementations.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; }
}
|