YNICTE/FO/Controllers/FOOpenBaseController.cs

18 lines
423 B
C#
Raw Permalink Normal View History

2020-10-12 14:39:23 +09:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using NP.Model;
using NP.Base.Auth;
namespace NP.FO.Controllers
{
public class FOOpenBaseController : FOBaseController
{
protected override void OnActionExecuting(ActionExecutingContext filterContext)
{
base.OnActionExecuting(filterContext);
}
}
}