Philipp Heenemann
a8b91f4ee6
Updated the existing C# code into a more modern, imperative and top-level statements style. This involves shortening the code by removing unnecessary parts like additional brackets and explicit namespace declarations. It's done to improve clarity and readability.
12 lines
240 B
C#
12 lines
240 B
C#
using Avalonia.ReactiveUI;
|
|
using SPTInstaller.ViewModels;
|
|
|
|
namespace SPTInstaller.Views;
|
|
|
|
public partial class PreChecksView : ReactiveUserControl<PreChecksViewModel>
|
|
{
|
|
public PreChecksView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
} |