mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
16 lines
285 B
C#
16 lines
285 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Stylet;
|
|
|
|
namespace Artemis.UI.Screens.Settings.Debug.Tabs
|
|
{
|
|
public class LogsDebugViewModel : Screen
|
|
{
|
|
public LogsDebugViewModel()
|
|
{
|
|
DisplayName = "Logs";
|
|
}
|
|
}
|
|
}
|