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

15 lines
314 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace RainmeterStudio.Core.Model
{
public interface IDocument : INotifyPropertyChanged
{
Reference Reference { get; }
bool IsDirty { get; set; }
}
}