// /** // * File: HttpUser.cs // * Author: haraldwolff // * // * This file and it's content is copyrighted by the Author and / or copyright holder. // * Any use wihtout proper permission is illegal and may lead to legal actions. // * // * // **/ using System; namespace ln.http { public class HttpUser { public String AuthenticationName { get; private set; } public virtual String DisplayName { get; private set; } public long AccessRightsMask { get; private set; } public HttpUser() { AuthenticationName = ""; DisplayName = "Anonymous"; AccessRightsMask = 0; } } }