You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuUsersController.cs 410B

123456789101112131415
  1. using Luticate2.Utils.Controllers;
  2. using Luticate2.Utils.Dbo.Basic;
  3. using Microsoft.AspNetCore.Mvc;
  4. using Microsoft.Extensions.Options;
  5. namespace Luticate2.Auth.Controllers
  6. {
  7. [Route(LuAuthExtensions.RoutePrefix)]
  8. public class LuUsersController : LuController
  9. {
  10. public LuUsersController(IOptions<LuUtilsOptionsDbo> luUtilsOptionsDbo) : base(luUtilsOptionsDbo)
  11. {
  12. }
  13. }
  14. }