1using System; 2 3namespace presentation.windows 4{ 5 public interface DialogPresenter : Presenter 6 { 7 Action close { get; set; } 8 } 9}