31 lines
461 B
C#
31 lines
461 B
C#
|
9 years ago
|
namespace Yavsc.Models.Messaging
|
||
|
|
{
|
||
|
|
public class HairCutQueryEvent : BookQueryProviderInfo, IEvent
|
||
|
|
{
|
||
|
|
public HairCutQueryEvent()
|
||
|
|
{
|
||
|
|
Topic = "HairCutQuery";
|
||
|
|
}
|
||
|
|
|
||
|
|
public string Message
|
||
|
|
{
|
||
|
|
get;
|
||
|
|
|
||
|
|
set;
|
||
|
|
}
|
||
|
|
|
||
|
|
public string Sender
|
||
|
|
{
|
||
|
|
get;
|
||
|
|
|
||
|
|
set;
|
||
|
|
}
|
||
|
|
|
||
|
|
public string Topic
|
||
|
|
{
|
||
|
|
get;
|
||
|
|
|
||
|
|
set;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|