Files
Workspace/Assets/Modules/ShrinkNetwork.Integration.EventBus/ShrinkNetworkDeltaEventContracts.cs
T

18 lines
474 B
C#

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; }
}
}