15 lines
319 B
C#
Raw Normal View History

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