using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel;
namespace IndianHealthService.BMXNet
{
///
/// The event args used by the RemoteEventService
///
public class RemoteEventArgs : EventArgs
{
private String _eventType = null;
///
/// This string corresponds to well-known/shared EventTypes used to identify
/// different events published and subscribed between BMX implementations using RemoteSessions.
///
public String EventType
{
get { return _eventType; }
set { _eventType = value; }
}
private String _details = null;
///
/// This is an optional peice of data with some event-specific details.
///
public String Details
{
get { return _details; }
set { _details = value; }
}
}
}