15 lines
400 B
C#
15 lines
400 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Web;
|
|
using WebsitePanel.WebDav.Core.Security.Authentication.Principals;
|
|
|
|
namespace WebsitePanel.WebDav.Core
|
|
{
|
|
public class WspContext
|
|
{
|
|
public static WspPrincipal User { get { return HttpContext.Current.User as WspPrincipal; } }
|
|
}
|
|
}
|