-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPictureState.cs
25 lines (23 loc) · 934 Bytes
/
PictureState.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System.Collections.Generic;
namespace Microsoft.PictureBot
{
/// <summary>
/// Stores counter state for the conversation.
/// Stored in <see cref="Microsoft.Bot.Builder.ConversationState"/> and
/// backed by <see cref="Microsoft.Bot.Builder.MemoryStorage"/>.
/// </summary>
public class PictureState
{
/// <summary>
/// Gets or sets the number of turns in the conversation.
/// </summary>
/// <value>The number of turns in the conversation.</value>
public string Greeted { get; set; } = "not greeted";
// A list of things that users have said to the bot
public List<string> UtteranceList { get; private set; } = new List<string>();
public string Search { get; set; } = "";
public string Searching { get; set; } = "no";
}
}