wabbajack/Wabbajack.App/Interfaces/IScreenView.cs
2021-09-27 06:42:46 -06:00

10 lines
150 B
C#

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