Index.cshtml.cs 309 B

123456789101112131415161718
  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 CSCoreRedis.Pages
  8. {
  9. public class IndexModel : PageModel
  10. {
  11. public void OnGet()
  12. {
  13. }
  14. }
  15. }