11 lines
251 B
C#
11 lines
251 B
C#
|
|
using DTS.Common.Base;
|
|||
|
|
|
|||
|
|
namespace DTS.Common.Interface
|
|||
|
|
{
|
|||
|
|
public interface IHeadReportViewModel : IBaseViewModel
|
|||
|
|
{
|
|||
|
|
IHeadReportInputView InputView { get; set; }
|
|||
|
|
IHeadReportOutputView OutputView { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|