using System.Web.Mvc;
namespace Learun.Application.Web.Areas.LR_CodeGeneratorModule.Controllers
{
///
/// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
/// Copyright (c) 2013-2018 北京泉江科技有限公司
/// 创建人:陈彬彬
/// 日 期:2017.03.09
/// 描 述:字体图标查看
///
public class IconController : MvcControllerBase
{
#region 视图功能
///
/// 图标查看
///
///
[HttpGet]
public ActionResult Index()
{
return View();
}
///
/// 手机图标查看
///
///
[HttpGet]
public ActionResult AppIndex()
{
return View();
}
#endregion
}
}