mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2026-07-30 17:30:40 +00:00
PPAP integration
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user