acb213e4b8
- Documents all library entities - Fixes styling warnings for library entities - Updates library entities to inherit from interfaces - Makes library entites no longer partial.
17 lines
412 B
C#
17 lines
412 B
C#
using System.Collections.Generic;
|
|
using Jellyfin.Data.Entities.Libraries;
|
|
|
|
namespace Jellyfin.Data.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// An interface abstracting an entity that has artwork.
|
|
/// </summary>
|
|
public interface IHasArtwork
|
|
{
|
|
/// <summary>
|
|
/// Gets a collection containing this entity's artwork.
|
|
/// </summary>
|
|
ICollection<Artwork> Artwork { get; }
|
|
}
|
|
}
|