From 63570a49435a7592fe7b4db87d299c17cbfabf4a Mon Sep 17 00:00:00 2001 From: ted Li Date: Tue, 9 Apr 2019 06:18:50 -0700 Subject: [PATCH] added OAuthConnection --- .../Authentication/OAuthConnection.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lib/csharp/microsoft.bot.builder.solutions.shared/microsoft.bot.builder.solutions.shared/Authentication/OAuthConnection.cs diff --git a/lib/csharp/microsoft.bot.builder.solutions.shared/microsoft.bot.builder.solutions.shared/Authentication/OAuthConnection.cs b/lib/csharp/microsoft.bot.builder.solutions.shared/microsoft.bot.builder.solutions.shared/Authentication/OAuthConnection.cs new file mode 100644 index 0000000000..3b2dd657b7 --- /dev/null +++ b/lib/csharp/microsoft.bot.builder.solutions.shared/microsoft.bot.builder.solutions.shared/Authentication/OAuthConnection.cs @@ -0,0 +1,9 @@ +namespace Microsoft.Bot.Builder.Solutions.Shared.Authentication +{ + public class OAuthConnection + { + public string Name { get; set; } + + public string Provider { get; set; } + } +} \ No newline at end of file