Merging r37048, r37051, r37052, r37055 from the-real-msvc branch
[reactos.git] / irc / TechBot / TechBot.Commands.Common / WineBugUrl.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("winebug", Help = "!winebug <number>" , Description="Will give you a link to the reqested Wine bug")]
10 class WineBugUrl : BugCommand
11 {
12 public WineBugUrl()
13 {
14 }
15
16 protected override string BugUrl
17 {
18 get { return "http://bugs.winehq.org/show_bug.cgi?id={0}"; }
19 }
20 }
21 }