// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.AspNetCore.Identity
{
///
/// Encapsulates an error from the identity subsystem.
///
public class IdentityError
{
///
/// Gets or sets the code for this error.
///
///
/// The code for this error.
///
public string Code { get; set; }
///
/// Gets or sets the description for this error.
///
///
/// The description for this error.
///
public string Description { get; set; }
}
}