Mercurial > silverbladetech
view Chronosv2/source/Authentication/AuthenticationInfo.cs @ 17:7721a1270363
New files added during dev
author | stevenh7776 stevenhollidge@hotmail.com |
---|---|
date | Wed, 14 Mar 2012 01:23:57 +0700 |
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 } }