remove duplicate

This commit is contained in:
Jicheng Lu 2024-09-07 11:00:11 -05:00
parent 0d999a9d62
commit 2faed9f3cb
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}";
}
}