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