21 lines
341 B
21 lines
341 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
using System.Web.Mvc;
|
||
|
|
||
|
namespace QMAPP.MESReport.Web.Controllers
|
||
|
{
|
||
|
public class MSCameraController : Controller
|
||
|
{
|
||
|
//
|
||
|
// GET: /MSCamera/
|
||
|
|
||
|
public ActionResult Index()
|
||
|
{
|
||
|
return View();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|