You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
448 B

using JiLinApp.Core.Avalonia;
using JiLinApp.Pages.FenceServer;
using JiLinApp.Pages.PtzServer;
using JiLinApp.Pages.VibrateServer;
namespace JiLinApp.Pages.Main;
public class MainWindowViewModel : ViewModelBase
{
#region Fields
internal PtzViewModel PtzViewModel { get; } = new();
internal VibrateViewModel VibrateViewModel { get; } = new();
internal FenceViewModel FenceViewModel { get; } = new();
#endregion Fields
}