rainmeter-studio/RainmeterStudio/Business/ProjectManager.cs

17 lines
343 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using RainmeterStudio.Model;
namespace RainmeterStudio.Business
{
public class ProjectManager
{
public Project ActiveProject { get; protected set; }
public void Open() { }
public void Close() { }
}
}