1 instantiation of MvcTodo
Sample (1)
Controllers\TestController.cs (1)
26return TypedResults.Ok(new MvcTodo("Title", "Description", true));
4 references to MvcTodo
Sample (4)
Controllers\TestController.cs (4)
24public Ok<MvcTodo> GetTypedResult() 31public IActionResult PostForm([FromForm] MvcTodo todo) 59public ActionResult<MvcTodo> HttpQueryWithBodyMethod([FromBody] MvcTodo todo)