2020-05-28 23:44:58 +00:00
|
|
|
|
using System;
|
|
|
|
|
using Wabbajack.Common.Serialization.Json;
|
|
|
|
|
|
|
|
|
|
namespace Wabbajack.Lib.Downloaders
|
|
|
|
|
{
|
|
|
|
|
public class TESAllDownloader : AbstractIPS4Downloader<TESAllDownloader, TESAllDownloader.State>
|
|
|
|
|
{
|
|
|
|
|
#region INeedsDownload
|
|
|
|
|
public override string SiteName => "TESALL";
|
2020-05-29 04:09:39 +00:00
|
|
|
|
public override Uri SiteURL => new Uri("https://tesall.ru");
|
|
|
|
|
public override Uri IconUri => new Uri("https://tesall.ru/favicon.ico");
|
2020-05-28 23:44:58 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
public TESAllDownloader() : base(new Uri("https://tesall.ru/index.php?app=core&module=global§ion=login"),
|
|
|
|
|
"tesall", "tesall.ru", "member_id")
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[JsonName("TESAllDownloader")]
|
|
|
|
|
public class State : State<TESAllDownloader>{}
|
|
|
|
|
}
|
|
|
|
|
}
|