mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
16 lines
391 B
C#
16 lines
391 B
C#
using Artemis.UI.Shared;
|
|
using ReactiveUI;
|
|
|
|
namespace Artemis.UI.Screens.Debugger.Logs
|
|
{
|
|
public class LogsDebugViewModel : ActivatableViewModelBase, IRoutableViewModel
|
|
{
|
|
public LogsDebugViewModel(IScreen hostScreen)
|
|
{
|
|
HostScreen = hostScreen;
|
|
}
|
|
|
|
public string UrlPathSegment => "logs";
|
|
public IScreen HostScreen { get; }
|
|
}
|
|
} |