main
1namespace presentation.windows
2{
3 public interface UICommandBuilder
4 {
5 IObservableCommand build<T>(Presenter presenter) where T : UICommand;
6 }
7}