iotgateway/IoTGateway.ViewModel/_Admin/DataPrivilegeVMs/DataPrivilegeBatchVM.cs

24 lines
521 B
C#
Raw Normal View History

2021-12-12 06:55:48 +00:00
// WTM默认页面 Wtm buidin page
using System;
using System.ComponentModel.DataAnnotations;
using WalkingTec.Mvvm.Core;
namespace WalkingTec.Mvvm.Mvc.Admin.ViewModels.DataPrivilegeVMs
{
public class DataPrivilegeBatchVM : BaseBatchVM<DataPrivilege, DataPrivilege_BatchEdit>
{
public DataPrivilegeBatchVM()
{
ListVM = new DataPrivilegeListVM();
LinkedVM = new DataPrivilege_BatchEdit();
}
}
public class DataPrivilege_BatchEdit : BaseVM
{
}
}