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/BaseClasses/ActionBase.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: 516 bytes
Line 
1
2namespace Netron.Diagramming.Core {
3  abstract class ActionBase : ActivityBase, IAction {
4
5    #region Fields
6    private IModel mModel;
7    #endregion
8
9    #region Properties
10    public IModel Model {
11      get {
12        return mModel;
13      }
14      set {
15        mModel = value;
16      }
17    }
18    #endregion
19
20
21    #region Constructor
22    ///<summary>
23    ///Default constructor
24    ///</summary>
25    public ActionBase(string name)
26      : base(name) {
27
28    }
29    #endregion
30
31  }
32}
Note: See TracBrowser for help on using the repository browser.