Mercurial > pub > bltoolkit
annotate Source/ComponentModel/ObjectEditEventArgs.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
parents | f990fcb411a9 |
children |
rev | line source |
---|---|
0 | 1 using System; |
2 | |
3 namespace BLToolkit.ComponentModel | |
4 { | |
5 public class ObjectEditEventArgs | |
6 { | |
7 public ObjectEditEventArgs(ObjectEditType editType) | |
8 { | |
9 _editType = editType; | |
10 } | |
11 | |
12 private ObjectEditType _editType; | |
13 public ObjectEditType EditType | |
14 { | |
15 get { return _editType; } | |
16 set { _editType = value; } | |
17 } | |
18 } | |
19 } |