source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/IndianHealthService.BMXNet/Sevices/LocalEventArgs.cs@ 1146

Last change on this file since 1146 was 1146, checked in by Sam Habiel, 13 years ago

Initial Import of BMX4

File size: 567 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using System.ComponentModel;
5
6namespace IndianHealthService.BMXNet.Services
7{
8 public class LocalEventArgs : EventArgs
9 {
10 private String _eventType = null;
11
12 public String EventType
13 {
14 get { return _eventType; }
15 set { _eventType = value; }
16 }
17 private String _stub = null;
18
19 public String Stub
20 {
21 get { return _stub; }
22 set { _stub = value; }
23 }
24
25
26
27 }
28}
Note: See TracBrowser for help on using the repository browser.