mirror of
https://github.com/SabreTools/SabreTools.RedumpLib.git
synced 2026-07-08 18:16:25 +00:00
Downloader is a RedumpTool class
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using SabreTools.RedumpLib.Data;
|
||||
using SabreTools.RedumpLib.Web;
|
||||
|
||||
namespace SabreTools.RedumpLib
|
||||
namespace RedumpTool
|
||||
{
|
||||
/// <summary>
|
||||
/// Contains logic for dealing with downloads
|
||||
15
RedumpTool/Enumerations.cs
Normal file
15
RedumpTool/Enumerations.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace RedumpTool
|
||||
{
|
||||
/// <summary>
|
||||
/// Determines what download type to initate
|
||||
/// </summary>
|
||||
public enum Feature
|
||||
{
|
||||
NONE,
|
||||
Site,
|
||||
WIP,
|
||||
Packs,
|
||||
User,
|
||||
Quicksearch,
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,5 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using SabreTools.RedumpLib;
|
||||
using SabreTools.RedumpLib.Data;
|
||||
|
||||
namespace RedumpTool
|
||||
{
|
||||
|
||||
@@ -122,19 +122,6 @@ namespace SabreTools.RedumpLib.Data
|
||||
TwoOrMoreGreen = 5,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Determines what download type to initate
|
||||
/// </summary>
|
||||
public enum Feature
|
||||
{
|
||||
NONE,
|
||||
Site,
|
||||
WIP,
|
||||
Packs,
|
||||
User,
|
||||
Quicksearch,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// List of all disc langauges
|
||||
/// </summary>
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace SabreTools.RedumpLib.Web
|
||||
/// <summary>
|
||||
/// Contains logic for dealing with packs
|
||||
/// </summary>
|
||||
internal static class Packs
|
||||
public static class Packs
|
||||
{
|
||||
/// <summary>
|
||||
/// Download premade packs
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace SabreTools.RedumpLib.Web
|
||||
/// <summary>
|
||||
/// Contains logic for dealing with searches
|
||||
/// </summary>
|
||||
internal static class Search
|
||||
public static class Search
|
||||
{
|
||||
/// <summary>
|
||||
/// List the disc IDs associated with a given quicksearch query
|
||||
|
||||
Reference in New Issue
Block a user