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 @ 13398

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

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

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