maint: added livewatch asset
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Ingvar.LiveWatch
|
||||
{
|
||||
public struct VariableSearchResultMeta
|
||||
{
|
||||
public bool IsValueResults => ValueResults is { Count: > 0 };
|
||||
public SearchQueryResult NameResult;
|
||||
public Dictionary<int, SearchQueryResult> ValueResults;
|
||||
|
||||
public void Clear()
|
||||
{
|
||||
NameResult.IsPositive = false;
|
||||
ValueResults?.Clear();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user