// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.AspNetCore.Http; namespace Microsoft.AspNetCore.Mvc { /// /// An that when executed will produce an empty /// response. /// public class OkResult : StatusCodeResult { /// /// Initializes a new instance of the class. /// public OkResult() : base(StatusCodes.Status200OK) { } } }