patbef-ServiceInside/Publisher/Models/StatusUpdateArgs.cs

21 lines
430 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Publisher.Models
{
public class StatusUpdateArgs : EventArgs
{
public string Type { get; set; }
public string Data { get; set; }
public StatusUpdateArgs(string type, string data)
{
this.Type = type;
this.Data = data;
}
}
}