wabbajack/Wabbajack.DTOs/DownloadStates/IDownloadState.cs

12 lines
243 B
C#
Raw Permalink Normal View History

2021-09-27 12:42:46 +00:00
using System.Text.Json.Serialization;
2021-10-23 16:51:17 +00:00
namespace Wabbajack.DTOs.DownloadStates;
public interface IDownloadState
2021-09-27 12:42:46 +00:00
{
2021-10-23 16:51:17 +00:00
[JsonIgnore] object[] PrimaryKey { get; }
2021-09-27 12:42:46 +00:00
2021-10-23 16:51:17 +00:00
[JsonIgnore] string TypeName { get; }
2021-09-27 12:42:46 +00:00
2021-10-23 16:51:17 +00:00
string PrimaryKeyString { get; }
2021-09-27 12:42:46 +00:00
}