mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
17 lines
371 B
C#
17 lines
371 B
C#
using System;
|
|
using Wabbajack.App.Interfaces;
|
|
using Wabbajack.App.ViewModels;
|
|
|
|
namespace Wabbajack.App.Views
|
|
{
|
|
public abstract class ScreenBase<T> : ViewBase<T>, IScreenView
|
|
where T : ViewModelBase
|
|
{
|
|
protected ScreenBase(bool createViewModel = true) : base(createViewModel)
|
|
{
|
|
|
|
}
|
|
|
|
public Type ViewModelType => typeof(T);
|
|
}
|
|
} |