Files
DP44/Common/DTS.Common/.svn/pristine/da/da6d39f18c5f70c23b7f75cef1f87dbc7b1c80cf.svn-base
2026-04-17 14:55:32 -04:00

12 lines
254 B
Plaintext

// ReSharper disable CheckNamespace
namespace DTS.Common.Base
{
public interface IBaseWindow
{
/// <summary>
/// Gets or sets the data context.
/// </summary>
object DataContext { get; set; }
}
}