File tree Expand file tree Collapse file tree 2 files changed +5
-11
lines changed
src/Infrastructure/BotSharp.Abstraction Expand file tree Collapse file tree 2 files changed +5
-11
lines changed Original file line number Diff line number Diff line change @@ -7,4 +7,9 @@ public class KeyValue
7
7
8
8
[ JsonPropertyName ( "value" ) ]
9
9
public string Value { get ; set ; }
10
+
11
+ public override string ToString ( )
12
+ {
13
+ return $ "Key: { Key } , Value: { Value } ";
14
+ }
10
15
}
Original file line number Diff line number Diff line change @@ -23,15 +23,4 @@ public class ConversationFilter
23
23
/// Check whether each key in the list is in the conversation states and its value equals to target value if not empty
24
24
/// </summary>
25
25
public IEnumerable < KeyValue > States { get ; set ; } = new List < KeyValue > ( ) ;
26
- }
27
-
28
- public class KeyValue
29
- {
30
- public string Key { get ; set ; }
31
- public string ? Value { get ; set ; }
32
-
33
- public override string ToString ( )
34
- {
35
- return $ "Key: { Key } , Value: { Value } ";
36
- }
37
26
}
You can’t perform that action at this time.
0 commit comments