Ionite
1 year ago
5 changed files with 38 additions and 11 deletions
@ -1,11 +1,15 @@
|
||||
namespace StabilityMatrix.Avalonia.Models.TagCompletion; |
||||
using System; |
||||
|
||||
namespace StabilityMatrix.Avalonia.Models.TagCompletion; |
||||
|
||||
/// <summary> |
||||
/// Type of completion requested. |
||||
/// </summary> |
||||
[Flags] |
||||
public enum CompletionType |
||||
{ |
||||
Tag, |
||||
ExtraNetwork, |
||||
ExtraNetworkType |
||||
None = 0, |
||||
Tag = 1 << 1, |
||||
ExtraNetwork = 1 << 2, |
||||
ExtraNetworkType = 1 << 3 |
||||
} |
||||
|
Loading…
Reference in new issue