using ShrinkEventBus; namespace ShrinkNetwork.Integration { public interface IShrinkNetworkDeltaEvent { string DeltaKey { get; } long DeltaVersion { get; } } [ShrinkNetworkMessage(-300001, "__integration/event_result_response")] public sealed class ShrinkNetworkEventResultResponse : ShrinkRpcResponseBase { public EventResult Result { get; set; } = EventResult.DEFAULT; public bool IsCanceled { get; set; } } }