forked from BotBuilderCommunity/botbuilder-community-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdaptiveProperties.cs
More file actions
20 lines (20 loc) · 760 Bytes
/
AdaptiveProperties.cs
File metadata and controls
20 lines (20 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace Bot.Builder.Community.Cards
{
internal class AdaptiveProperties
{
public const string Actions = "actions";
public const string AltText = "altText";
public const string Body = "body";
public const string Data = "data";
public const string DisplayText = "displayText";
public const string Facts = "facts";
public const string FallbackText = "fallbackText";
public const string Id = "id";
public const string Inlines = "inlines";
public const string Placeholder = "placeholder";
public const string Text = "text";
public const string Title = "title";
public const string Type = "type";
public const string Value = "value";
}
}