wabbajack/Wabbajack.App/Interfaces/IScreenView.cs

10 lines
150 B
C#
Raw Normal View History

2021-09-27 12:42:46 +00:00
using System;
namespace Wabbajack.App.Interfaces
{
public interface IScreenView
{
public Type ViewModelType { get; }
}
}