mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-02-03 13:17:33 +00:00
28 lines
No EOL
517 B
C#
28 lines
No EOL
517 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
|
|
namespace Project_Unite.Controllers
|
|
{
|
|
public class LegalController : Controller
|
|
{
|
|
// GET: Legal/TOS
|
|
public ActionResult TOS()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public ActionResult License()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
// GET: Legal/Privacy
|
|
public ActionResult Privacy()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
} |