namespace Impostor.Api.Events { public interface IEventCancelable : IEvent { /// /// True if the event was cancelled. /// bool IsCancelled { get; set; } } }