wabbajack/Wabbajack.DTOs/DownloadStates/GoogleDrive.cs
2021-10-23 10:51:17 -06:00

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};
}