init
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
using DTS.Common.Base;
|
||||
|
||||
namespace DTS.Common.Interface
|
||||
{
|
||||
public interface IExportDataView:IBaseView
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
using DTS.Common.Base;
|
||||
|
||||
namespace DTS.Common.Interface
|
||||
{
|
||||
public interface IExportDataViewModel :IBaseViewModel
|
||||
{
|
||||
}
|
||||
}
|
||||
10
Common/DTS.CommonCore/Interface/ExportData/IExportHeader.cs
Normal file
10
Common/DTS.CommonCore/Interface/ExportData/IExportHeader.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace DTS.Common.Interface.ExportData
|
||||
{
|
||||
public interface IExportHeader : INotifyPropertyChanged
|
||||
{
|
||||
string HeaderName { get; set; }
|
||||
bool IsSelected { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user