Index.cshtml.cs 313 B

1234567891011121314151617
  1. using Microsoft.AspNetCore.Mvc;
  2. using Microsoft.AspNetCore.Mvc.RazorPages;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Threading.Tasks;
  7. namespace WebAppletStatus.Pages
  8. {
  9. public class IndexModel : PageModel
  10. {
  11. public void OnGet()
  12. {
  13. }
  14. }
  15. }