using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.RazorPages; namespace SupplierWeb.Pages.Partials { public class CodePartailModel : PageModel { public Func Code { get; set; } public int Index { get; set; } public bool ShowTestButtons { get; set; } public string Api { get; set; } public bool IsActive { get; set; } public void OnGet() { } } }