Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AbubakarSiddiq/a75a5625d6b5c109b26325d460eda0ba to your computer and use it in GitHub Desktop.
Save AbubakarSiddiq/a75a5625d6b5c109b26325d460eda0ba to your computer and use it in GitHub Desktop.
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace AspNetCore5WebAPIVersioning.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class BookController : ControllerBase
{
[HttpGet]
public string Get()
{
return "This string is for testing";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment