wabbajack/Wabbajack.App/Interfaces/IScreenView.cs
2021-10-23 10:51:17 -06:00

8 lines
123 B
C#

using System;
namespace Wabbajack.App.Interfaces;
public interface IScreenView
{
public Type ViewModelType { get; }
}