About.cshtml.cs 385 B

123456789101112131415161718
  1. using Microsoft.AspNetCore.Mvc.RazorPages;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace WebAppletStatus.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. }