036953f3ff
1. Using directive should appear within a namespace declaration 2. Use trailing comma in multi-line initializers
20 lines
550 B
C#
20 lines
550 B
C#
// <copyright file="IHasArtwork.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Database.Implementations.Interfaces
|
|
|
|
using System.Collections.Generic;
|
|
using Jellyfin.Database.Implementations.Entities.Libraries;
|
|
|
|
/// <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; }
|
|
}
|