[ACCESS]
[reactos.git] / irc / TechBot / TechBot.Commands.Common / ReactOSBugUrl.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4
5 using TechBot.Library;
6
7 namespace TechBot.Commands.Common
8 {
9 [Command("rosbug", Help = "!rosbug <number>", Description = "Will give you a link to the reqested ReactOS bug")]
10 class ReactOSBugUrl : BugCommand
11 {
12 public ReactOSBugUrl()
13 {
14 }
15
16 protected override string BugUrl
17 {
18 get { return "http://www.reactos.org/bugzilla/show_bug.cgi?id={0}"; }
19 }
20 }
21 }