Merge pull request #629 from iceljc/master

remove duplicate
This commit is contained in:
iceljc 2024-09-07 11:00:42 -05:00 committed by GitHub
commit 75bba73ccb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 11 deletions

View file

@ -7,4 +7,9 @@ public class KeyValue
[JsonPropertyName("value")]
public string Value { get; set; }
public override string ToString()
{
return $"Key: {Key}, Value: {Value}";
}
}

View file

@ -23,15 +23,4 @@ public class ConversationFilter
/// Check whether each key in the list is in the conversation states and its value equals to target value if not empty
/// </summary>
public IEnumerable<KeyValue> States { get; set; } = new List<KeyValue>();
}
public class KeyValue
{
public string Key { get; set; }
public string? Value { get; set; }
public override string ToString()
{
return $"Key: {Key}, Value: {Value}";
}
}