colors (ctor)

This commit is contained in:
2017-02-12 03:53:33 +01:00
parent 44c26d099a
commit b3283e4fd4
31 changed files with 12631 additions and 6932 deletions

View File

@ -0,0 +1,31 @@
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;
}
}
}