namespace Lithnet.CredentialProvider
{
///
/// A base class used to provide credentials for serialization
///
public abstract class CredentialResponseBase
{
///
/// Gets or sets a value indicating if the credentials were sucessfully obtained
///
public bool IsSuccess { get; set; }
///
/// An optional status icon
///
public StatusIcon StatusIcon { get; set; }
///
/// An optional status message describing any errors that occurred
///
public string StatusText { get; set; }
///
/// The domain of the user who's credentials are to be serialized
///
public string Domain { get; set; }
///
/// The username of the user who's credentials are to be serialized
///
public string Username { get; set; }
}
}