Added hammock project to debug streaming issues
[pithos-ms-client] / trunk / hammock / src / net35 / Hammock / Tasks / TaskState.cs
1 using System;
2
3 namespace Hammock.Tasks
4 {
5 #if !SILVERLIGHT
6     [Serializable]
7 #endif
8     public class TaskState : IRetryState
9     {
10         #region ITaskState Members
11
12         public int RepeatCount
13         {
14             get;set;
15         }
16
17         public DateTime? LastRepeat
18         {
19             get; set;
20         }
21
22         #endregion
23     }
24 }