036953f3ff
1. Using directive should appear within a namespace declaration 2. Use trailing comma in multi-line initializers
37 lines
686 B
C#
37 lines
686 B
C#
// <copyright file="ArtKind.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Database.Implementations.Enums;
|
|
|
|
/// <summary>
|
|
/// An enum representing types of art.
|
|
/// </summary>
|
|
public enum ArtKind
|
|
{
|
|
/// <summary>
|
|
/// Another type of art, not covered by the other members.
|
|
/// </summary>
|
|
Other = 0,
|
|
|
|
/// <summary>
|
|
/// A poster.
|
|
/// </summary>
|
|
Poster = 1,
|
|
|
|
/// <summary>
|
|
/// A banner.
|
|
/// </summary>
|
|
Banner = 2,
|
|
|
|
/// <summary>
|
|
/// A thumbnail.
|
|
/// </summary>
|
|
Thumbnail = 3,
|
|
|
|
/// <summary>
|
|
/// A logo.
|
|
/// </summary>
|
|
Logo = 4,
|
|
}
|