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