LANCommander/LANCommander.SDK/Models/InstallPlan.cs
Pat Hartl eaaaf39b8d Refactor install process to use major/minor task queue
Tasks are broken down into major and minor tasks. Major tasks are like install game, redistributable, or tool. These are reported as individual tasks in the download queue. Minor tasks are running of a script, downloading saves, extracting/downloading, etc.
2026-04-17 22:24:47 -05:00

9 lines
180 B
C#

using System.Collections.Generic;
namespace LANCommander.SDK.Models
{
public class InstallPlan
{
public List<InstallPlanItem> Items { get; set; } = new();
}
}