using System.Collections.Generic; using Jellyfin.Data.Entities.Libraries; namespace Jellyfin.Data.Interfaces { /// /// An abstraction representing an entity that has releases. /// public interface IHasReleases { /// /// Gets a collection containing this entity's releases. /// ICollection Releases { get; } } }