using System;
using System.Collections.Generic;
using System.Text;
using ScrewTurn.Wiki.PluginFramework;
namespace ScrewTurn.Wiki {
///
/// Stores a Local UserInfo object.
///
public class LocalUserInfo : UserInfo {
private string passwordHash;
///
/// Initializes a new instance of the LocalUserInfo class.
///
/// The Username.
/// The display name.
/// The Email.
/// Specifies whether the Account is active or not.
/// The creation DateTime.
/// The Users Storage Provider that manages the User.
/// The Password Hash.
public LocalUserInfo(string username, string displayName, string email, bool active, DateTime dateTime,
IUsersStorageProviderV30 provider, string passwordHash)
: base(username, displayName, email, active, dateTime, provider) {
this.passwordHash = passwordHash;
}
///
/// Gets or sets the Password Hash.
///
public string PasswordHash {
get { return passwordHash; }
set { passwordHash = value; }
}
}
}