About.cshtml.cs 381 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Microsoft.AspNetCore.Mvc.RazorPages;
  6. namespace CSCoreRedis.Pages
  7. {
  8. public class AboutModel : PageModel
  9. {
  10. public string Message { get; set; }
  11. public void OnGet()
  12. {
  13. Message = "Your application description page.";
  14. }
  15. }
  16. }