DocSpace-client/thirdparty/Google.Authenticator/Google.Authenticator.WebSample/Global.asax.cs

16 lines
345 B
C#
Raw Normal View History

2022-02-24 14:36:44 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;
namespace Google.Authenticator.WebSample
{
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
}
}
}