summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Api/Events/IEventCancelable.cs
blob: 319f02a22da3827f0f22dfd080c023ae10831fc7 (plain)
1
2
3
4
5
6
7
8
9
10
namespace Impostor.Api.Events
{
    public interface IEventCancelable : IEvent
    {
        /// <summary>
        ///     True if the event was cancelled.
        /// </summary>
        bool IsCancelled { get; set; }
    }
}