iotgateway/IoTGateway.ViewModel/Config/SystemConfigVMs/SystemConfigSearcher.cs
2021-12-12 14:55:48 +08:00

22 lines
432 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 SystemConfigSearcher : BaseSearcher
{
protected override void InitVM()
{
}
}
}