Work on project storage

This commit is contained in:
2014-07-26 09:39:05 +03:00
parent 3d0a028920
commit 0c57cabe56
11 changed files with 815 additions and 9 deletions

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using RainmeterEditor.Model;
namespace RainmeterEditor.Business
{
public class ProjectManager
{
public Project ActiveProject { get; protected set; }
public void Open() { }
public void Close() { }
}
}