12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Microsoft.AspNetCore.Mvc.RazorPages;
- namespace CSCoreRedis.Pages
- {
- public class ContactModel : PageModel
- {
- public string Message { get; set; }
- public void OnGet()
- {
- Message = "Your contact page.";
- }
- }
- }
|