20 lines
434 B
C#
20 lines
434 B
C#
using Newtonsoft.Json.Linq;
|
|
using Prism.Events;
|
|
using SWS.CAD.Models;
|
|
using SWS.CAD.Views.CustomControl;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SWS.CAD.Event
|
|
{
|
|
/// <summary>
|
|
/// 选择电缆位号页面的选择变更事件
|
|
/// </summary>
|
|
public class NewPositional_SelectChangeEvent : PubSubEvent<propertyModel>
|
|
{
|
|
}
|
|
}
|