初始化
This commit is contained in:
37
MQTTServerSideAPI/Controllers/HomeController.cs
Normal file
37
MQTTServerSideAPI/Controllers/HomeController.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.Mvc;
|
||||
using static Org.BouncyCastle.Math.EC.ECCurve;
|
||||
|
||||
namespace MQTTServerSideAPI.Controllers
|
||||
{
|
||||
public class HomeController : BaseController
|
||||
{
|
||||
public ActionResult Index()
|
||||
{
|
||||
ViewBag.Title = "Home Page";
|
||||
|
||||
return View();
|
||||
}
|
||||
public ActionResult RefreshDevice()
|
||||
{
|
||||
ViewBag.Title = "RefreshDevice";
|
||||
|
||||
return View();
|
||||
}
|
||||
public ActionResult Offlinerecord()
|
||||
{
|
||||
ViewBag.Title = "Offlinerecord";
|
||||
|
||||
return View();
|
||||
}
|
||||
public ActionResult Viewofflinerecordsofalldevices()
|
||||
{
|
||||
ViewBag.Title = "Viewofflinerecordsofalldevices";
|
||||
|
||||
return View();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user