using OpenTap; namespace AddInPlugin { public interface CanBreakBase { bool? IsBreaked { get; set; } } public interface CanContinueBase { bool? IsContinued { get; set; } } }