[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