view Chronosv2/source/Authentication/AuthenticationInfo.cs @ 25:81f9b72a44ce

Tidy up
author adminsh@apollo
date Tue, 20 Mar 2012 21:22:00 +0000
parents 741981715d94
children
line wrap: on
line source

namespace Chronos.Authentication
{
    /// <summary>
    /// Provides information about an information action
    /// </summary>
    public sealed class AuthenticationInfo
    {
        #region · Properties ·

        /// <summary>
        /// Gets or sets the user id
        /// </summary>
        public string UserId
        {
            get;
            set;
        }

        /// <summary>
        /// Gets or sets the <see cref="AuthenticationAction"/>
        /// </summary>
        public AuthenticationAction Action
        {
            get;
            set;
        }

        #endregion

        #region · Constructors ·

        /// <summary>
        /// Initializes a new instance of the <see cref="AuthenticationInfo"/> class
        /// </summary>
        public AuthenticationInfo()
        {
        }

        #endregion
    }
}