20 lines
343 B
C#
20 lines
343 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Web;
|
|||
|
|
using System.Web.Mvc;
|
|||
|
|
using System.Security;
|
|||
|
|
|
|||
|
|
namespace OSS.Controllers
|
|||
|
|
{
|
|||
|
|
[Authorize]
|
|||
|
|
public class WelcomeController : Controller
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public ActionResult Index()
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
return View();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|