LANCommander/LANCommander.Server/Models/FilePickerOptions.cs
2026-02-07 19:19:33 -06:00

14 lines
478 B
C#

using LANCommander.UI.Components;
namespace LANCommander.Server.Models
{
public class FilePickerOptions
{
public Guid? ArchiveId { get; set; }
public string Root { get; set; }
public bool Select { get; set; }
public bool Multiple { get; set; } = false;
public Func<IFileManagerEntry, bool> EntryVisible { get; set; } = _ => true;
public Func<IFileManagerEntry, bool> EntrySelectable { get; set; } = _ => true;
}
}