Add admin request type

This commit is contained in:
Christoph Hagen 2022-06-07 17:03:29 +02:00
parent c57c8f2084
commit f42fe0280d

View File

@ -0,0 +1,13 @@
import Foundation
/**
Authentication used to request application changes by an administrator
*/
public struct AdminRequest: Codable {
/// The SHA-256 hash of the admin key
public let keyHash: Data
/// The application id with which the request is associated
public let application: ApplicationId
}