yavsc/Yavsc/Models/HairCut/HairCutQueryEvent.cs

36 lines
571 B
C#

9 years ago
using Yavsc.Interfaces.Workflow;
9 years ago
namespace Yavsc.Models.Haircut
9 years ago
{
9 years ago
public class HairCutQueryEvent : RdvQueryProviderInfo, IEvent
9 years ago
{
public HairCutQueryEvent(string subTopic)
9 years ago
{
Topic = GetType().Name+"/"+subTopic;
}
9 years ago
public string Message
{
get;
set;
}
public string Sender
{
get;
set;
}
public string Topic
{
get;
private set;
9 years ago
}
9 years ago
HairCutQuery Data { get; set; }
9 years ago
}
}