Files
DP44/Common/DTS.Common/.svn/pristine/4c/4ca4a4d3920306276f77f06b70499d6cf6856d37.svn-base

14 lines
263 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
// ReSharper disable CheckNamespace
namespace DTS.Common.Base
{
public interface IBaseModel : IBasePropertyChanged
{
/// <summary>
/// Gets the IsSaved status.
/// </summary>
bool IsSaved { get; }
}
}