9 lines
243 B
C#
9 lines
243 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Harmonia.WinUI.Storage;
|
|
|
|
public class FilePickerOptions
|
|
{
|
|
public IReadOnlyList<FilePickerFileType> FileTypeFilter { get; set; } = [];
|
|
public StoragePickerViewMode ViewMode { get; set; }
|
|
} |