CustomMenuDelete.cshtml.cs 606 B

1234567891011121314151617181920212223242526
  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.Menus
  10. {
  11. public class CustomMenuDeleteModel : LoginedPageModel
  12. {
  13. public CustomMenuDeleteModel(IMemoryCache cache, IApiClient client) : base(cache, client)
  14. {
  15. }
  16. public override int Index => 2;
  17. public override int SubIndex => 2;
  18. public void OnGet()
  19. {
  20. }
  21. }
  22. }