mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
14 lines
398 B
C#
14 lines
398 B
C#
|
using System.Text.Json.Serialization;
|
||
|
|
||
|
namespace Wabbajack.DTOs.ServerResponses
|
||
|
{
|
||
|
public class DetailedStatusItem
|
||
|
{
|
||
|
public bool IsFailing { get; set; }
|
||
|
public Archive Archive { get; set; }
|
||
|
|
||
|
public string Name => string.IsNullOrWhiteSpace(Archive.Name) ? Archive.State.PrimaryKeyString : Archive.Name;
|
||
|
|
||
|
public ArchiveStatus ArchiveStatus { get; set; }
|
||
|
}
|
||
|
}
|