Files
DP44/Common/DTS.CommonCore/.svn/pristine/da/da6d39f18c5f70c23b7f75cef1f87dbc7b1c80cf.svn-base

12 lines
254 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
// ReSharper disable CheckNamespace
namespace DTS.Common.Base
{
public interface IBaseWindow
{
/// <summary>
/// Gets or sets the data context.
/// </summary>
object DataContext { get; set; }
}
}