You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
915 B
31 lines
915 B
#pragma warning disable CA1813 // Avoid unsealed attributes
|
|
|
|
using System;
|
|
|
|
namespace Jellyfin.Api.Attributes
|
|
{
|
|
/// <summary>
|
|
/// Internal produces image attribute.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class AcceptsFileAttribute : Attribute
|
|
{
|
|
private readonly string[] _contentTypes;
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="AcceptsFileAttribute"/> class.
|
|
/// </summary>
|
|
/// <param name="contentTypes">Content types this endpoint produces.</param>
|
|
public AcceptsFileAttribute(params string[] contentTypes)
|
|
{
|
|
_contentTypes = contentTypes;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the configured content types.
|
|
/// </summary>
|
|
/// <returns>the configured content types.</returns>
|
|
public string[] GetContentTypes() => _contentTypes;
|
|
}
|
|
}
|