mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
525 B
24 lines
525 B
using Volo.Abp.EventBus;
|
|
|
|
namespace SharedModule
|
|
{
|
|
/// <summary>
|
|
/// Used to indicate that App2 has received a text message.
|
|
/// </summary>
|
|
[EventName("Test.App1TextReceived")] //Optional event name
|
|
public class App1TextReceivedEventData
|
|
{
|
|
public string ReceivedText { get; set; }
|
|
|
|
public App1TextReceivedEventData()
|
|
{
|
|
|
|
}
|
|
|
|
public App1TextReceivedEventData(string receivedText)
|
|
{
|
|
ReceivedText = receivedText;
|
|
}
|
|
}
|
|
}
|