00001 using System; 00002 using System.Collections.Generic; 00003 using System.Linq; 00004 using System.Text; 00005 00006 namespace NicoLiveTools { 00007 00011 public class AlertEventArgs : EventArgs { 00012 public string Address { 00013 get { 00014 return "http://live.nicovideo.jp/watch/lv" + LiveId; 00015 } 00016 } 00017 public string LiveId { 00018 get; 00019 set; 00020 } 00021 public string Community { 00022 get; 00023 set; 00024 } 00025 public string User { 00026 get; 00027 set; 00028 } 00029 public string Original { 00030 get; 00031 set; 00032 } 00033 00034 public AlertEventArgs() { 00035 00036 } 00037 00038 public AlertEventArgs(string liveId, string communityId, string userId) { 00039 LiveId = liveId; 00040 Community = communityId; 00041 User = userId; 00042 } 00043 } 00044 }
1.6.1