2020-01-22 09:50:09 +00:00
|
|
|
|
using System;
|
2020-04-06 20:48:54 +00:00
|
|
|
|
using Wabbajack.Common;
|
|
|
|
|
using Wabbajack.Common.Serialization.Json;
|
2020-01-22 09:50:09 +00:00
|
|
|
|
|
|
|
|
|
namespace Wabbajack.Lib.Downloaders
|
|
|
|
|
{
|
|
|
|
|
public class TESAllianceDownloader : AbstractIPS4Downloader<TESAllianceDownloader, TESAllianceDownloader.State>
|
|
|
|
|
{
|
|
|
|
|
#region INeedsDownload
|
2020-01-22 09:51:59 +00:00
|
|
|
|
public override string SiteName => "TESAlliance";
|
2020-01-22 20:00:32 +00:00
|
|
|
|
public override Uri SiteURL => new Uri("http://tesalliance.org/forums/index.php?");
|
2020-01-22 09:50:09 +00:00
|
|
|
|
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")
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-06 20:48:54 +00:00
|
|
|
|
[JsonName("TESAllianceDownloader")]
|
2020-01-22 09:50:09 +00:00
|
|
|
|
public class State : State<TESAllianceDownloader>{}
|
|
|
|
|
}
|
|
|
|
|
}
|