rainmeter-studio/RainmeterStudio.Core/Model/IDocument.cs

15 lines
314 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2014-07-29 16:42:52 +00:00
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace RainmeterStudio.Core.Model
{
2014-07-29 16:42:52 +00:00
public interface IDocument : INotifyPropertyChanged
{
2014-07-29 16:42:52 +00:00
Reference Reference { get; }
bool IsDirty { get; set; }
}
}