14 lines
194 B
C#
14 lines
194 B
C#
|
|
using Prism.Events;
|
|
|
|
namespace RIZO_Application.Core
|
|
{
|
|
public class MessageSentEvent : PubSubEvent<string>
|
|
{
|
|
}
|
|
|
|
public class LogSentEvent : PubSubEvent<string>
|
|
{
|
|
}
|
|
}
|