Files
DP44/Common/DTS.Common/.svn/pristine/d3/d36f593b5861f790ccd192d710cfc6bc2f9c5498.svn-base

12 lines
252 B
Plaintext
Raw Normal View History

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