mirror of
https://github.com/reactos/reactos.git
synced 2025-06-23 00:20:16 +00:00
20 lines
380 B
C#
20 lines
380 B
C#
![]() |
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace TechBot.Library
|
||
|
{
|
||
|
[Command("winebug", Help = "!winebug <number>")]
|
||
|
class WineBugUrl : BugCommand
|
||
|
{
|
||
|
public WineBugUrl()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
protected override string BugUrl
|
||
|
{
|
||
|
get { return "http://bugs.winehq.org/show_bug.cgi?id={0}"; }
|
||
|
}
|
||
|
}
|
||
|
}
|