LANCommander/LANCommander.SDK/ExtractionResult.cs
2026-04-07 23:31:13 -05:00

23 lines
547 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LANCommander.SDK
{
public class ExtractionResult
{
public bool Success { get; set; }
public bool Canceled { get; set; }
public string Directory { get; set; }
public List<FileEntry> Files { get; internal set; } = [];
public class FileEntry
{
public string EntryPath { get; set; }
public string LocalPath { get; set; }
}
}
}