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.
19 lines
494 B
19 lines
494 B
namespace Jellyfin.Api.Attributes
|
|
{
|
|
/// <summary>
|
|
/// Produces file attribute of "video/*".
|
|
/// </summary>
|
|
public class ProducesVideoFileAttribute : ProducesFileAttribute
|
|
{
|
|
private const string ContentType = "video/*";
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ProducesVideoFileAttribute"/> class.
|
|
/// </summary>
|
|
public ProducesVideoFileAttribute()
|
|
: base(ContentType)
|
|
{
|
|
}
|
|
}
|
|
}
|