RepoFullDownloader/RepoFullDownloader-Core/DataClasses.cs
2021-10-17 22:14:26 -07:00

33 lines
745 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RepoFullDownloader
{
class Options
{
public bool originalFilenames { get; set; }
public Repo[] repos { get; set; }
}
class Repo
{
public string url { get; set; }
public bool isInstaller { get; set; }
}
class CydiaPackage
{
public CydiaPackage(string _link, string _name, string _version)
{
this.link = _link;
this.name = _name;
this.version = _version;
}
public string link { get; set; }
public string name { get; set; }
public string version { get; set; }
}
}