12 lines
252 B
C#
12 lines
252 B
C#
|
|
// ReSharper disable CheckNamespace
|
|||
|
|
namespace DTS.Common.Base
|
|||
|
|
{
|
|||
|
|
public interface IBaseView
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets or sets the data context.
|
|||
|
|
/// </summary>
|
|||
|
|
object DataContext { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|