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.
9 lines
180 B
C#
9 lines
180 B
C#
using System.Collections.Generic;
|
|
|
|
namespace LANCommander.SDK.Models
|
|
{
|
|
public class InstallPlan
|
|
{
|
|
public List<InstallPlanItem> Items { get; set; } = new();
|
|
}
|
|
}
|