Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Core/Interfaces/IAction.cs @ 2768

Last change on this file since 2768 was 2768, checked in by mkommend, 14 years ago

added solution folders and sources for the netron library (ticket #867)

File size: 507 bytes
Line 
1using System;
2using System.Drawing;
3using System.Windows.Forms;
4namespace Netron.Diagramming.Core
5{
6  /// <summary>
7  /// This defines what an action is on the model.
8  /// </summary>
9  public interface IAction : IActivity
10  {
11
12    #region Events
13
14    #endregion
15
16    #region Properties
17        /// <summary>
18        /// Gets or sets the model.
19        /// </summary>
20        /// <value>The model.</value>
21        IModel Model {get; set;}
22    #endregion
23
24    #region Methods
25
26    #endregion
27  }
28}
Note: See TracBrowser for help on using the repository browser.