Mercurial > silverbladetech
view Chronosv2/source/Authentication/AuthenticationInfo.cs @ 27:96fdf58e05b4
Server working with sockets and rabbitmq
author | adminsh@apollo |
---|---|
date | Wed, 21 Mar 2012 19:00:59 +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 } }