9 lines
225 B
C#
9 lines
225 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace LeanCloud.Storage.Internal.Query {
|
|||
|
internal interface ILCQueryCondition {
|
|||
|
bool Equals(ILCQueryCondition other);
|
|||
|
Dictionary<string, object> Encode();
|
|||
|
}
|
|||
|
}
|