// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.AspNetCore.Mvc; [assembly: ApiConventionType(typeof(DefaultApiConventions))] namespace Microsoft.AspNetCore.Mvc.Api.Analyzers._INPUT_ { [ApiController] [Route("[controller]/[action]")] public class CodeFixWithConventionAddsMissingStatusCodes : ControllerBase { public ActionResult<string> GetItem(int id) { if (id == 0) { return NotFound(); } return Accepted("Result"); } } } |