1234567891011121314151617181920212223242526 |
- 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<string> 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()
- {
- }
- }
- }
|