28 lines
616 B
C#
28 lines
616 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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
|
|
}
|
|
} |