22 lines
499 B
C#
22 lines
499 B
C#
namespace EgwCoreLib.Lux.Core
|
|
{
|
|
public class PubSubEventArgs : EventArgs
|
|
{
|
|
#region Public Constructors
|
|
|
|
public PubSubEventArgs(string uid, string messaggio)
|
|
{
|
|
this.msgUid = uid;
|
|
this.newMessage = messaggio;
|
|
}
|
|
|
|
#endregion Public Constructors
|
|
|
|
#region Public Properties
|
|
|
|
public string newMessage { get; set; } = "";
|
|
public string msgUid { get; set; } = "";
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |