Merge branch 'SciSharp:master' into master

This commit is contained in:
Haiping 2024-09-07 22:05:40 -05:00 committed by GitHub
commit f7c77ee11c
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}";
}
}