refactor: remove redundant models for privacy policy pages

This commit is contained in:
Oliver Booth 2023-08-20 13:30:11 +01:00
parent 9295c4a848
commit 06fd256ec8
Signed by: oliverbooth
GPG Key ID: B89D139977693FED
4 changed files with 0 additions and 16 deletions

View File

@ -1,5 +1,4 @@
@page "/privacy/google-play"
@model OliverBooth.Pages.Privacy.GooglePlay
@{
ViewData["Title"] = "Google Play Privacy Policy";
}

View File

@ -1,7 +0,0 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace OliverBooth.Pages.Privacy;
public class GooglePlay : PageModel
{
}

View File

@ -1,5 +1,4 @@
@page
@model OliverBooth.Pages.Privacy.Index
@{
ViewData["Title"] = "Privacy Policy";
}

View File

@ -1,7 +0,0 @@
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace OliverBooth.Pages.Privacy;
public class Index : PageModel
{
}