LANCommander/LANCommander.Server/Models/FilePickerOptions.cs
2025-09-06 12:57:15 -05:00

14 lines
477 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;
}
}