main
1namespace MoMoney.Presentation.Views
2{
3    public interface ITitleBar
4    {
5        void display(string title);
6        void append_asterik();
7        void remove_asterik();
8    }
9}