Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 | using System.ComponentModel;
|
---|
5 |
|
---|
6 | namespace IndianHealthService.BMXNet.Services
|
---|
7 | {
|
---|
8 | public class RemoteEventArgs : 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 _details = null;
|
---|
18 |
|
---|
19 | public String Details
|
---|
20 | {
|
---|
21 | get { return _details; }
|
---|
22 | set { _details = value; }
|
---|
23 | }
|
---|
24 |
|
---|
25 |
|
---|
26 |
|
---|
27 | }
|
---|
28 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.