namespace Jellyfin.Api.Attributes
{
    /// 
    /// Produces file attribute of "image/*".
    /// 
    public sealed class ProducesPlaylistFileAttribute : ProducesFileAttribute
    {
        private const string ContentType = "application/x-mpegURL";
        /// 
        /// Initializes a new instance of the  class.
        /// 
        public ProducesPlaylistFileAttribute()
            : base(ContentType)
        {
        }
    }
}