Files

17 lines
312 B
C#
Raw Permalink Normal View History

2026-04-04 13:30:13 +02:00
using LogViewer.Core.ViewModels;
namespace AvaloniaLoggingDI.ViewModels;
2026-04-05 08:14:33 +02:00
public class MainViewModel(LogViewerControlViewModel logViewer) : ViewModelBase
2026-04-04 13:30:13 +02:00
{
2026-04-05 08:14:33 +02:00
#region Constructor
2026-04-04 13:30:13 +02:00
#endregion
#region Properties
2026-04-05 08:14:33 +02:00
public LogViewerControlViewModel LogViewer { get; } = logViewer;
2026-04-04 13:30:13 +02:00
#endregion
}