mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-07-30 17:30:40 +00:00
22 lines
552 B
C#
22 lines
552 B
C#
namespace Esiur.Security.Authority;
|
|
|
|
/// <summary>
|
|
/// Result returned by a post-encryption authentication key-rotation step.
|
|
/// </summary>
|
|
public sealed class AuthenticationKeyRotationResult
|
|
{
|
|
public AuthenticationKeyRotationRuling Ruling { get; }
|
|
public object Data { get; }
|
|
public string Error { get; }
|
|
|
|
public AuthenticationKeyRotationResult(
|
|
AuthenticationKeyRotationRuling ruling,
|
|
object data = null,
|
|
string error = null)
|
|
{
|
|
Ruling = ruling;
|
|
Data = data;
|
|
Error = error;
|
|
}
|
|
}
|