#pragma warning disable SA1649 // File name should match type name.
using Microsoft.AspNetCore.Mvc;
namespace Jellyfin.Api.Results;
///
/// Ok result with type specified.
///
/// The type to return.
public class OkResult : OkObjectResult
{
///
/// Initializes a new instance of the class.
///
/// The value to return.
public OkResult(T value)
: base(value)
{
}
}