LANCommander/LANCommander.Launcher.Models/IInstallQueueItem.cs
Pat Hartl 27d6ea6486 Add ability to modify a game's installation
- DownloadService has been renamed to InstallService
- In the library item context menu, there is a new option "Modify". This allows the user to selsct any additional addons to install as well as move the game to a separate storage location.
- Fixed issue where transfers were being double updated for installs
- Force UI update whenever queue is updates
2024-10-26 15:48:47 -05:00

29 lines
855 B
C#

using LANCommander.SDK.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LANCommander.Launcher.Models
{
public interface IInstallQueueItem
{
Guid Id { get; set; }
Guid[] AddonIds { get; set; }
string Title { get; set; }
string Version { get; set; }
string InstallDirectory { get; set; }
Guid CoverId { get; set; }
Guid IconId { get; set; }
DateTime QueuedOn { get; set; }
DateTime? CompletedOn { get; set; }
bool IsUpdate { get; set; }
bool State { get; }
GameInstallStatus Status { get; set; }
float Progress { get; set; }
double TransferSpeed { get; set; }
long BytesDownloaded { get; set; }
long TotalBytes { get; set; }
}
}