14 lines
334 B
C#
14 lines
334 B
C#
|
|
using Prism.Ioc;
|
|||
|
|
using Prism.Navigation.Regions;
|
|||
|
|
|
|||
|
|
namespace YY.Admin.ViewModels.UpperMes;
|
|||
|
|
|
|||
|
|
public class ReportQueryListViewModel : BaseViewModel
|
|||
|
|
{
|
|||
|
|
public ReportQueryListViewModel(IContainerExtension container, IRegionManager regionManager)
|
|||
|
|
: base(container, regionManager)
|
|||
|
|
{
|
|||
|
|
Title = "报表查询";
|
|||
|
|
}
|
|||
|
|
}
|