// 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; namespace Microsoft.AspNetCore.Mvc.Api.Analyzers { [ApiController] public class DiagnosticsAreReturned_ForActionResultOfTReturningMethodWithoutSomeAttributes : ControllerBase { [ProducesResponseType(typeof(string), 200)] [ProducesResponseType(typeof(string), 404)] public IActionResult Put(int id, object model) { if (id == 0) { return NotFound(); } if (!ModelState.IsValid) { return /*MM*/UnprocessableEntity(); } return Ok(); } } } |