-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResponse.cs
More file actions
39 lines (26 loc) · 1.06 KB
/
Copy pathResponse.cs
File metadata and controls
39 lines (26 loc) · 1.06 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System.Collections.Generic;
namespace FillInTheTextBot.Models
{
public class Response
{
public static string NextTextIndexStorageKey => nameof(NextTextIndex).ToUpper();
public static string ScopeStorageKey => nameof(ScopeKey).ToUpper();
public static string PassedTextsKey => nameof(PassedTexts).ToUpper();
public static string CurrentTextKey => nameof(CurrentText).ToUpper();
public Response()
{
Emotions = new Dictionary<string, string>();
}
public string ChatHash { get; set; }
public string UserHash { get; set; }
public string Text { get; set; }
public string AlternativeText { get; set; }
public bool Finished { get; set; }
public ICollection<Button> Buttons { get; set; }
public int NextTextIndex { get; set; }
public string CurrentText { get; set; }
public IList<string> PassedTexts { get; set; }
public string ScopeKey { get; set; }
public IDictionary<string, string> Emotions { get; set; }
}
}