CustomMenuCreate.cshtml.cs 654 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using JCSoft.WX.Framework.Api;
  6. using Microsoft.AspNetCore.Mvc;
  7. using Microsoft.AspNetCore.Mvc.RazorPages;
  8. using Microsoft.Extensions.Caching.Memory;
  9. namespace SupplierWeb.Pages
  10. {
  11. public class CustomMenuCreateModel : LoginedPageModel
  12. {
  13. public CustomMenuCreateModel(IMemoryCache cache, IApiClient client) : base(cache, client)
  14. {
  15. }
  16. public string Code { get; set; }
  17. public override int Index => 0;
  18. public override int SubIndex => 2;
  19. public void OnGet()
  20. {
  21. }
  22. }
  23. }