25 lines
476 B
C#
25 lines
476 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CapMachine.Wpf.PrismEvent
|
|
{
|
|
/// <summary>
|
|
/// 公共弹窗消息
|
|
/// </summary>
|
|
public class ComDialogMsg
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string? Name { get; set; }
|
|
|
|
/// <summary>
|
|
///参数
|
|
/// </summary>
|
|
public object Par { get; set; }
|
|
}
|
|
}
|