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 EntryVisible { get; set; } = _ => true; public Func EntrySelectable { get; set; } = _ => true; } }