LANCommander/LANCommander.Server/Models/ImportDialogOptions.cs
2026-05-28 22:26:24 -05:00

15 lines
No EOL
438 B
C#

using LANCommander.SDK.Enums;
namespace LANCommander.Server.Models;
public class ImportDialogOptions
{
public string Hint { get; set; }
public ManifestType? ManifestType { get; set; }
/// <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; }
}