Stardust/Stardust.WebFx/Areas/Star/Controllers/AppHistoryController.cs

13 lines
261 B
C#

using NewLife.Cube;
using Stardust.Data;
namespace Stardust.Web.Areas.Star.Controllers
{
public class AppHistoryController : EntityController<AppHistory>
{
static AppHistoryController()
{
MenuOrder = 93;
}
}
}