Church.Net.API/Chruch.Net/Areas/dashboard/Controllers/_DashboardBaseController.cs
2022-09-08 08:04:32 -07:00

14 lines
253 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace Chruch.Net.Areas.dashboard.Controllers
{
[Authorize]
public class _DashboardBaseController : Controller
{
}
}