wabbajack/Wabbajack.DTOs/DownloadStates/IDownloadState.cs
2021-09-27 06:42:46 -06:00

13 lines
269 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; }
}
}