2026-04-04 13:30:13 +02:00
|
|
|
using LogViewer.Core.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace AvaloniaSerilogDI.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
|
|
|
|
|
}
|