Multi-Platform Package Manager for Stable Diffusion
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using System; |
|
|
|
namespace StabilityMatrix.Avalonia.Models.TreeFileExplorer; |
|
|
|
[Flags] |
|
public enum TreeFileExplorerOptions |
|
{ |
|
None = 0, |
|
|
|
IndexFiles = 1 << 5, |
|
IndexFolders = 1 << 6, |
|
|
|
CanSelectFiles = 1 << 10, |
|
CanSelectFolders = 1 << 11, |
|
}
|
|
|