CodePartail.cshtml.cs 543 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Microsoft.AspNetCore.Mvc;
  6. using Microsoft.AspNetCore.Mvc.RazorPages;
  7. namespace SupplierWeb.Pages.Partials
  8. {
  9. public class CodePartailModel : PageModel
  10. {
  11. public Func<string> Code { get; set; }
  12. public int Index { get; set; }
  13. public bool ShowTestButtons { get; set; }
  14. public string Api { get; set; }
  15. public bool IsActive { get; set; }
  16. public void OnGet()
  17. {
  18. }
  19. }
  20. }