EPLAN_PROD_Plugin/Sinvo.EplanHpD.Plugin.WPFUI/Common/CommonMessage.cs

17 lines
361 B
C#
Raw Normal View History

2024-12-02 11:02:52 +08:00
using CommunityToolkit.Mvvm.Messaging.Messages;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sinvo.EplanHpD.Plugin.WPFUI.Common
{
public class CommonMessage : ValueChangedMessage<int>
{
public CommonMessage(int value) : base(value)
{
}
}
}