9 lines
213 B
C#
9 lines
213 B
C#
namespace Filtration.ThemeEditor.ViewModels
|
|
{
|
|
public interface IThemeViewModelFactory
|
|
{
|
|
IThemeEditorViewModel Create();
|
|
void Release(IThemeEditorViewModel themeEditorViewModel);
|
|
}
|
|
}
|