main
1namespace MoMoney.Presentation.Model.Projects
2{
3 public class EmptyProject : IProject
4 {
5 public string name()
6 {
7 return "untitled.mo";
8 }
9
10 public bool is_file_specified()
11 {
12 return false;
13 }
14
15 public bool is_open()
16 {
17 return false;
18 }
19 }
20}