-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStateUpdateEventArgs.cs
More file actions
31 lines (26 loc) · 974 Bytes
/
StateUpdateEventArgs.cs
File metadata and controls
31 lines (26 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Text;
using LothianProductions.VoIP.State;
namespace LothianProductions.VoIP {
public class StateUpdateEventArgs : EventArgs {
public StateUpdateEventArgs( IList<DevicePropertyChange> deviceChanges, IList<LinePropertyChange> lineChanges,
IList<CallPropertyChange> callChanges ) {
mDeviceStateChanges = deviceChanges;
mLineStateChanges = lineChanges;
mCallStateChanges = callChanges;
}
protected IList<DevicePropertyChange> mDeviceStateChanges;
public IList<DevicePropertyChange> DeviceStateChanges {
get{ return mDeviceStateChanges; }
}
protected IList<LinePropertyChange> mLineStateChanges;
public IList<LinePropertyChange> LineStateChanges {
get{ return mLineStateChanges; }
}
protected IList<CallPropertyChange> mCallStateChanges;
public IList<CallPropertyChange> CallStateChanges {
get{ return mCallStateChanges; }
}
}
}