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
492 B
24 lines
492 B
using Volo.Abp.EventBus;
|
|
|
|
namespace SharedModule
|
|
{
|
|
/// <summary>
|
|
/// Used to send a text message from App1 to App2.
|
|
/// </summary>
|
|
[EventName("Test.App1ToApp2Text")] //Optional event name
|
|
public class App1ToApp2TextEventData
|
|
{
|
|
public string TextMessage { get; set; }
|
|
|
|
public App1ToApp2TextEventData()
|
|
{
|
|
|
|
}
|
|
|
|
public App1ToApp2TextEventData(string textMessage)
|
|
{
|
|
TextMessage = textMessage;
|
|
}
|
|
}
|
|
}
|