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

12 lines
243 B
C#

using System.Text.Json.Serialization;
namespace Wabbajack.DTOs.DownloadStates;
public interface IDownloadState
{
[JsonIgnore] object[] PrimaryKey { get; }
[JsonIgnore] string TypeName { get; }
string PrimaryKeyString { get; }
}