File tree 2 files changed +28
-0
lines changed
CSharp/Library/Microsoft.Bot.Connector.Shared 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ using System ;
2
+ using System . Collections . Generic ;
3
+ using System . Text ;
4
+
5
+ namespace Microsoft . Bot . Connector
6
+ {
7
+ /// <summary>
8
+ /// Defines the importance of an Activity
9
+ /// </summary>
10
+ public static class ActivityImportance
11
+ {
12
+ /// <summary>
13
+ /// Low importance.
14
+ /// </summary>
15
+ public const string Low = "low" ;
16
+
17
+ /// <summary>
18
+ /// Normal importance.
19
+ /// </summary>
20
+ public const string Normal = "normal" ;
21
+
22
+ /// <summary>
23
+ /// High importance.
24
+ /// </summary>
25
+ public const string High = "high" ;
26
+ }
27
+ }
Original file line number Diff line number Diff line change 80
80
<Compile Include =" $(MSBuildThisFileDirectory)IInstallationUpdateActivity.cs" />
81
81
<Compile Include =" $(MSBuildThisFileDirectory)IInvokeActivity.cs" />
82
82
<Compile Include =" $(MSBuildThisFileDirectory)IMessageActivity.cs" />
83
+ <Compile Include =" $(MSBuildThisFileDirectory)Importance.cs" />
83
84
<Compile Include =" $(MSBuildThisFileDirectory)InputHints.cs" />
84
85
<Compile Include =" $(MSBuildThisFileDirectory)ITypingActivity.cs" />
85
86
<Compile Include =" $(MSBuildThisFileDirectory)JwtConfig.cs" />
You can’t perform that action at this time.
0 commit comments