Files
DP44/Common/DTS.CommonCore/.svn/pristine/f4/f4857edd72d65fe1cbe0da4aa446aa9c27729dc5.svn-base

14 lines
268 B
Plaintext
Raw Permalink 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; }
}
}