19 lines
327 B
C#
19 lines
327 B
C#
public class RaiseEventOptions
|
|
{
|
|
public static readonly RaiseEventOptions Default = new RaiseEventOptions();
|
|
|
|
public EventCaching CachingOption;
|
|
|
|
public byte InterestGroup;
|
|
|
|
public int[] TargetActors;
|
|
|
|
public ReceiverGroup Receivers;
|
|
|
|
public byte SequenceChannel;
|
|
|
|
public bool ForwardToWebhook;
|
|
|
|
public bool Encrypt;
|
|
}
|