Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssougnez/84385f581b5eb58106b47a76f7ded631 to your computer and use it in GitHub Desktop.
Save ssougnez/84385f581b5eb58106b47a76f7ded631 to your computer and use it in GitHub Desktop.
[Route("api/[controller]")]
[ApiController]
public class MyController : Controller
{
private readonly AppSettings appSettings;
public MyController(IOptions<AppSettings> appSettings)
{
this.appSettings = appSettings.Value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment