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