Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AbubakarSiddiq/e41e4476f41d8a38c7917ecd69989ba7 to your computer and use it in GitHub Desktop.
Save AbubakarSiddiq/e41e4476f41d8a38c7917ecd69989ba7 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]
[ApiVersion("1.0")]
[ApiVersion("1.1")]
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