mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
13 lines
356 B
C#
13 lines
356 B
C#
using System;
|
|
using Wabbajack.DTOs.JsonConverters;
|
|
|
|
namespace Wabbajack.DTOs.DownloadStates;
|
|
|
|
[JsonAlias("Mega")]
|
|
[JsonName("MegaDownloader, Wabbajack.Lib")]
|
|
public class Mega : ADownloadState
|
|
{
|
|
public Uri Url { get; init; }
|
|
public override string TypeName => "MegaDownloader+State";
|
|
public override object[] PrimaryKey => new object[] {Url};
|
|
} |