17 lines
361 B
C#
17 lines
361 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|