16 lines
306 B
C#
16 lines
306 B
C#
using Livia.Models.Data;
|
|
|
|
namespace Livia.ViewModels;
|
|
|
|
public interface ILiviaControlViewModel
|
|
{
|
|
List<ReportModuleExpanderViewModel> GenerateReportModuleGroups();
|
|
}
|
|
|
|
public interface ILiviaModuleViewModel
|
|
{
|
|
Task LoadData(DataBlock dataBlock);
|
|
|
|
//use this to init submodule
|
|
void Init();
|
|
} |