mirror of
https://gitee.com/iioter/iotgateway.git
synced 2024-11-29 18:28:09 +08:00
36 lines
714 B
C#
36 lines
714 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.Rpc.RpcLogVMs
|
|
{
|
|
public partial class RpcLogBatchVM : BaseBatchVM<RpcLog, RpcLog_BatchEdit>
|
|
{
|
|
public RpcLogBatchVM()
|
|
{
|
|
ListVM = new RpcLogListVM();
|
|
LinkedVM = new RpcLog_BatchEdit();
|
|
}
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Class to define batch edit fields
|
|
/// </summary>
|
|
public class RpcLog_BatchEdit : BaseVM
|
|
{
|
|
|
|
protected override void InitVM()
|
|
{
|
|
}
|
|
|
|
}
|
|
|
|
}
|