Last change
on this file since 17605 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 |
|
---|
2 | namespace 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.