EllieHub/EllieHub/Features/BotConfig/Views/Controls/FakeConsole.axaml.cs

16 lines
No EOL
487 B
C#

using Avalonia.ReactiveUI;
using EllieHub.Features.BotConfig.ViewModels;
namespace EllieHub.Features.AppConfig.Views.Controls;
/// <summary>
/// Represents a control that mimics the appearance of a terminal emulator.
/// </summary>
public partial class FakeConsole : ReactiveUserControl<FakeConsoleViewModel>
{
/// <summary>
/// Creates a control that mimics the appearance of a terminal emulator.
/// </summary>
public FakeConsole()
=> InitializeComponent();
}