csharp-sdk-upm/Storage/Internal/Operation/ILCOperation.cs

15 lines
343 B
C#
Raw Normal View History

2020-02-20 12:44:33 +08:00
using System.Collections;
using System.Collections.Generic;
namespace LeanCloud.Storage.Internal.Operation {
internal interface ILCOperation {
ILCOperation MergeWithPrevious(ILCOperation previousOp);
object Encode();
2020-02-20 12:44:33 +08:00
object Apply(object oldValue, string key);
IEnumerable GetNewObjectList();
}
}