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