1
0
mirror of synced 2024-11-15 01:33:51 +00:00
PettingZoo/Model/MessageInfo.cs

23 lines
511 B
C#
Raw Normal View History

2016-06-20 10:30:03 +00:00
using System.Collections.Generic;
namespace PettingZoo.Model
{
public class MessageInfo
{
public string RoutingKey { get; set; }
public byte[] Body { get; set; }
public Dictionary<string, string> Properties;
public string ContentType
{
get
{
return Properties != null && Properties.ContainsKey("content-type")
? Properties["content-type"]
: "";
}
}
}
}