EnumController.cs 331 B

12345678910111213141516
  1. using Microsoft.AspNetCore.Mvc;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace XYY.API.Base.Controllers
  7. {
  8. public class EnumController : Controller
  9. {
  10. public IActionResult GetEumns(string enumName)
  11. {
  12. return View();
  13. }
  14. }
  15. }