您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

LuUsersController.cs 279B

1234567891011121314
  1. using Luticate2.Utils.Controllers;
  2. using Microsoft.AspNetCore.Mvc;
  3. namespace Luticate2.Auth.Controllers
  4. {
  5. [Route("luticate/users")]
  6. public class LuUsersController : LuController
  7. {
  8. public string Get()
  9. {
  10. return "users";
  11. }
  12. }
  13. }