2021-09-27 12:42:46 +00:00
|
|
|
using System;
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
namespace Wabbajack.DTOs.DownloadStates;
|
|
|
|
|
|
|
|
public abstract class ALegacyIPS4 : IDownloadState
|
2021-09-27 12:42:46 +00:00
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
public Uri FullURL { get; set; } = new("https://www.wabbajack.org");
|
|
|
|
public bool IsAttachment { get; set; }
|
|
|
|
public string FileID { get; set; } = string.Empty;
|
2021-09-27 12:42:46 +00:00
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
public object[] PrimaryKey { get; }
|
|
|
|
public string TypeName { get; }
|
|
|
|
public string PrimaryKeyString { get; }
|
2021-09-27 12:42:46 +00:00
|
|
|
}
|