13 lines
249 B
Plaintext
13 lines
249 B
Plaintext
using DTS.Common.Base;
|
|
|
|
namespace DTS.Common.Interface
|
|
{
|
|
public interface IStatsViewModel : IBaseViewModel
|
|
{
|
|
/// <summary>
|
|
/// Gets the Tab View.
|
|
/// </summary>
|
|
IStatsView View { get; }
|
|
}
|
|
}
|