14 lines
304 B
C#
Raw Normal View History

2014-07-29 19:42:52 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RainmeterStudio.Core.Documents.DocumentEditorFeatures
2014-07-29 19:42:52 +03:00
{
public interface ICustomDocumentTitleProvider
{
string Title { get; }
event EventHandler TitleChanged;
}
}