mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
23 lines
753 B
C#
23 lines
753 B
C#
using System;
|
|
using MessagePack;
|
|
|
|
namespace Wabbajack.Lib.Downloaders
|
|
{
|
|
public class TESAllianceDownloader : AbstractIPS4Downloader<TESAllianceDownloader, TESAllianceDownloader.State>
|
|
{
|
|
#region INeedsDownload
|
|
public override string SiteName => "TESAlliance";
|
|
public override Uri SiteURL => new Uri("http://tesalliance.org/forums/index.php?");
|
|
public override Uri IconUri => new Uri("http://tesalliance.org/favicon.ico");
|
|
#endregion
|
|
|
|
public TESAllianceDownloader() : base(new Uri("http://tesalliance.org/forums/index.php?/login/"),
|
|
"tesalliance", "tesalliance.org")
|
|
{
|
|
}
|
|
|
|
[MessagePackObject]
|
|
public class State : State<TESAllianceDownloader>{}
|
|
}
|
|
}
|