11 lines
502 B
C#
11 lines
502 B
C#
namespace Ingvar.LiveWatch
|
|
{
|
|
public static class WatchServices
|
|
{
|
|
public static WatchReferenceCreator ReferenceCreator { get; set; } = new();
|
|
public static WatchVariableCreator VariableCreator { get; set; } = new();
|
|
public static WatchVariableUpdater VariableUpdater { get; set; } = new();
|
|
public static WatchCachedNamesBuilder NameBuilder { get; set; } = new();
|
|
public static WatchVariableSortUpdater VariableSortUpdater { get; set; } = new();
|
|
}
|
|
} |