blob: f536c19272c832ee11761f77412d5282bbc078b2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace I2R.LightNews.Pages;
public class NrkRadio : PageModel
{
public string FrontPageDataJSON { get; set; }
public ActionResult OnGet() {
return Page();
}
}
|