Пример #1
0
 /// <summary>
 /// Event type class constructor from parameter
 /// </summary>
 public EditBookmarkEvent(IPathModel path,
                          RecentFolderAction action = RecentFolderAction.Add)
     : this()
 {
     this.Folder = path;
     this.Action = action;
 }
Пример #2
0
 /// <summary>
 /// Event type class constructor from parameter
 /// </summary>
 public RecentFolderEvent(PathModel path,
                          RecentFolderAction action = RecentFolderAction.Add)
     : this()
 {
     this.Folder = path;
     this.Action = action;
 }