#region License // Copyright 2005-2019 Paul Kohler (https://github.com/paulkohler/minisqlquery). All rights reserved. // This source code is made available under the terms of the GNU Lesser General Public License v3.0 // https://github.com/paulkohler/minisqlquery/blob/master/LICENSE #endregion using System.ComponentModel; namespace MiniSqlQuery.Core { /// /// A configuration object for use with the options form. /// public interface IConfigurationObject : INotifyPropertyChanged { /// /// Gets a value indicating whether the settings are dirty. /// /// The is dirty. bool IsDirty { get; } /// /// Gets the Name of the settings. /// /// The name of the settings. string Name { get; } /// /// Gets a Settings object. /// /// The settings. object Settings { get; } /// /// Saves the settings. /// void Save(); } }