File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed
CSharp/Library/Microsoft.Bot.Connector.Shared Expand file tree Collapse file tree 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 8080 <Compile Include =" $(MSBuildThisFileDirectory)IInstallationUpdateActivity.cs" />
8181 <Compile Include =" $(MSBuildThisFileDirectory)IInvokeActivity.cs" />
8282 <Compile Include =" $(MSBuildThisFileDirectory)IMessageActivity.cs" />
83+ <Compile Include =" $(MSBuildThisFileDirectory)Importance.cs" />
8384 <Compile Include =" $(MSBuildThisFileDirectory)InputHints.cs" />
8485 <Compile Include =" $(MSBuildThisFileDirectory)ITypingActivity.cs" />
8586 <Compile Include =" $(MSBuildThisFileDirectory)JwtConfig.cs" />
You can’t perform that action at this time.
0 commit comments