Added hammock project to debug streaming issues
[pithos-ms-client] / trunk / hammock / src / net35 / Hammock / Web / WebEntity.cs
1 using System.Text;
2
3 namespace Hammock.Web
4 {
5     public class WebEntity
6     {
7         public string Content { get; set; }
8         public string ContentType { get; set; }
9         public Encoding ContentEncoding { get; set; }
10     }
11 }