namespace Alkami.Ops.SecretServer.Messages { /// /// Result Message from an Authentication Request /// public class AuthenticationResult : MessageBase { /// /// The authentication token generated during login /// public string Token { get; set; } } }