wabbajack/Wabbajack.App/Interfaces/IScreenView.cs
Timothy Baldridge 47e01dcc34 More styling
2021-11-04 07:01:48 -06:00

9 lines
160 B
C#

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