ace4f003e0a00348206cdf6d18dd2747f9449944
[reactos.git] / irc / TechBot / TechBot.Library / Commands / WineBugUrl.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4
5 namespace TechBot.Library
6 {
7 [Command("winebug", Help = "!winebug <number>")]
8 class WineBugUrl : BugCommand
9 {
10 public WineBugUrl()
11 {
12 }
13
14 protected override string BugUrl
15 {
16 get { return "http://bugs.winehq.org/show_bug.cgi?id={0}"; }
17 }
18 }
19 }