Develop and Download Open Source Software

Browse Subversion Repository

Contents of /branches/ProcessWatchImpl/Croissant/NicoNico/ReceieverStatusChangedEventArgs.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 44 - (show annotations) (download)
Tue Dec 15 16:20:54 2009 UTC (14 years, 3 months ago) by netseed
File size: 407 byte(s)


1 using System;
2
3 namespace Toast.NicoNico
4 {
5 public class ReceieverStatusChangedEventArgs:EventArgs
6 {
7 public ReceieverStatusChangedEventArgs(ReceieverStatus current, ReceieverStatus recent)
8 {
9 Current = current;
10 Recent = recent;
11 }
12
13 public ReceieverStatus Current
14 {
15 get;
16 private set;
17 }
18
19 public ReceieverStatus Recent
20 {
21 get;
22 private set;
23 }
24
25 }
26 }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26