Files
minecraft-modpack-updater/ModpackUpdater/UpdateAction.cs
2024-09-06 08:45:36 +02:00

12 lines
311 B
C#

using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace ModpackUpdater;
public class UpdateAction : InstallAction
{
[JsonConverter(typeof(StringEnumConverter))]
public UpdateActionType Type { get; set; }
public string SrcPath { get; set; }
public bool IsDirectory { get; set; }
}