2026-05-24 18:51:58 -05:00
|
|
|
using LANCommander.SDK.Enums;
|
|
|
|
|
|
2025-04-11 02:31:29 -05:00
|
|
|
namespace LANCommander.Server.Models;
|
|
|
|
|
|
|
|
|
|
public class ImportDialogOptions
|
|
|
|
|
{
|
|
|
|
|
public string Hint { get; set; }
|
2026-05-24 18:51:58 -05:00
|
|
|
public ManifestType? ManifestType { get; set; }
|
2026-05-28 22:24:46 -05:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// When set, the import dialog skips the upload stage and goes directly to record selection
|
|
|
|
|
/// using this pre-uploaded archive's object key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? PreUploadedObjectKey { get; set; }
|
2025-04-11 02:31:29 -05:00
|
|
|
}
|