// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using Microsoft.Agents.Core.Models; namespace {{YOUR_NAMESPACE}}.SSO; /// /// Token response provided by Teams Bot SSO prompt /// public class TeamsBotSsoPromptTokenResponse : TokenResponse { /// /// SSO token for user /// public string SsoToken { get; set; } /// /// Expiration time of SSO token /// public string SsoTokenExpiration { get; set; } }