mirror of
https://gitee.com/iioter/iotgateway.git
synced 2024-11-29 18:28:09 +08:00
36 lines
765 B
C#
36 lines
765 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using WalkingTec.Mvvm.Core;
|
|
using WalkingTec.Mvvm.Core.Extensions;
|
|
using IoTGateway.Model;
|
|
|
|
|
|
namespace IoTGateway.ViewModel.Config.SystemConfigVMs
|
|
{
|
|
public partial class SystemConfigBatchVM : BaseBatchVM<SystemConfig, SystemConfig_BatchEdit>
|
|
{
|
|
public SystemConfigBatchVM()
|
|
{
|
|
ListVM = new SystemConfigListVM();
|
|
LinkedVM = new SystemConfig_BatchEdit();
|
|
}
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Class to define batch edit fields
|
|
/// </summary>
|
|
public class SystemConfig_BatchEdit : BaseVM
|
|
{
|
|
|
|
protected override void InitVM()
|
|
{
|
|
}
|
|
|
|
}
|
|
|
|
}
|