提交了前面版本未add的文件
添加了千寻Rtk发送:NTRIP
添加缺号统计
添加GPS类型统计
限制小武内蒙地区部分地区使用(相关代码已注释)
This reverts commit 725c4b6d71.
27 lines
598 B
C#
27 lines
598 B
C#
using GalaSoft.MvvmLight;
|
|
using GalaSoft.MvvmLight.Command;
|
|
using Plane.FormationCreator.Formation;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Input;
|
|
|
|
namespace Plane.FormationCreator.ViewModels
|
|
{
|
|
public class GroupsViewModel: ViewModelBase
|
|
{
|
|
GroupManager _groupManager;
|
|
|
|
public GroupsViewModel(GroupManager groupManager)
|
|
{
|
|
_groupManager = groupManager;
|
|
}
|
|
|
|
public GroupManager GroupManager { get { return _groupManager; } }
|
|
|
|
|
|
}
|
|
}
|