using System.Collections.Generic; using LeanCloud.Storage.Internal.Codec; namespace LeanCloud.Storage.Internal.Query { public class LCEqualCondition : ILCQueryCondition { readonly string key; readonly object value; public LCEqualCondition(string key, object value) { this.key = key; this.value = value; } public bool Equals(ILCQueryCondition other) { if (other is LCEqualCondition cond) { return cond.key == key; } return false; } public Dictionary Encode() { return new Dictionary { { key, LCEncoder.Encode(value) } }; } } }