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/ISubsetAction.cs @ 4068

Last change on this file since 4068 was 4068, checked in by swagner, 14 years ago

Sorted usings and removed unused usings in entire solution (#1094)

File size: 454 bytes
Line 
1namespace Netron.Diagramming.Core {
2  /// <summary>
3  /// This defines what an action is on the model.
4  /// </summary>
5  public interface ISubsetAction : IAction {
6
7    #region Events
8
9    #endregion
10
11    #region Properties
12    /// <summary>
13    /// Gets the subset.
14    /// </summary>
15    /// <value>The subset.</value>
16    CollectionBase<IDiagramEntity> Subset { get; }
17    #endregion
18
19    #region Methods
20
21    #endregion
22  }
23}
Note: See TracBrowser for help on using the repository browser.