annotate Messaging/Common/Messages/LogMessages.cs @ 31:7d9de5746f18

Working version
author adminsh@apollo
date Thu, 22 Mar 2012 08:09:41 +0000
parents 9919ee227c93
children
rev   line source
27
96fdf58e05b4 Server working with sockets and rabbitmq
adminsh@apollo
parents:
diff changeset
1 using GalaSoft.MvvmLight.Messaging;
96fdf58e05b4 Server working with sockets and rabbitmq
adminsh@apollo
parents:
diff changeset
2
96fdf58e05b4 Server working with sockets and rabbitmq
adminsh@apollo
parents:
diff changeset
3 namespace Common.Messages
96fdf58e05b4 Server working with sockets and rabbitmq
adminsh@apollo
parents:
diff changeset
4 {
96fdf58e05b4 Server working with sockets and rabbitmq
adminsh@apollo
parents:
diff changeset
5 public class LogMessage : MessageBase
96fdf58e05b4 Server working with sockets and rabbitmq
adminsh@apollo
parents:
diff changeset
6 {
96fdf58e05b4 Server working with sockets and rabbitmq
adminsh@apollo
parents:
diff changeset
7 public string Body { get; set; }
96fdf58e05b4 Server working with sockets and rabbitmq
adminsh@apollo
parents:
diff changeset
8 }
96fdf58e05b4 Server working with sockets and rabbitmq
adminsh@apollo
parents:
diff changeset
9
29
9919ee227c93 msmq added
adminsh@apollo
parents: 27
diff changeset
10 public class MsmqLogMessage : LogMessage {}
9919ee227c93 msmq added
adminsh@apollo
parents: 27
diff changeset
11 public class RabbitLogMessage : LogMessage {}
31
7d9de5746f18 Working version
adminsh@apollo
parents: 29
diff changeset
12 public class ZeroMqLogMessage : LogMessage {}
27
96fdf58e05b4 Server working with sockets and rabbitmq
adminsh@apollo
parents:
diff changeset
13 }