10 lines
321 B
C#
10 lines
321 B
C#
|
|
using LogViewer.Core;
|
||
|
|
using LogDataStore = LogViewer.Avalonia.Logging.LogDataStore;
|
||
|
|
|
||
|
|
namespace AvaloniaSerilogNoDI.DataStores;
|
||
|
|
|
||
|
|
// Application-wide shared instance of the LogDataStore logging entries
|
||
|
|
public static class MainControlsDataStore
|
||
|
|
{
|
||
|
|
public static ILogDataStore DataStore { get; } = new LogDataStore();
|
||
|
|
}
|