daa0e5c5c73b392bb149ffee41fc4f675b53a725
[reactos.git] / irc / TechBot / TechBot.Library / ReactOSBugUrl.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4
5 namespace TechBot.Library
6 {
7 class ReactOSBugUrl : BugCommand
8 {
9 public ReactOSBugUrl(TechBotService techBot)
10 : base(techBot)
11 {
12 }
13
14 public override string[] AvailableCommands
15 {
16 get { return new string[] { "rosbug" }; }
17 }
18
19 protected override string BugUrl
20 {
21 get { return "http://www.reactos.org/bugzilla/show_bug.cgi?id={0}"; }
22 }
23
24 public override string Help()
25 {
26 return "!rosbug <number>";
27 }
28 }
29 }