2023-04-28 12:21:24 +08:00

22 lines
431 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IronIntel.Contractor.Site
{
public class WorkspaceBasePage : ContractorBasePage
{
protected void ProcessRequest(string method)
{
Response.End();
}
public override string JQueryVersion
{
get { return "3.6.0"; }
}
}
}