blob: 00c0c4c672c9111d5d6f993e5ce52fd8f282ae8f (
plain)
1
2
3
4
5
6
7
8
9
10
|
using System;
using System.ComponentModel;
namespace MoMoney.Presentation.Views.Shell
{
public interface IRegionManager
{
void region<T>(Action<T> action) where T : IComponent;
}
}
|