Added hammock project to debug streaming issues
[pithos-ms-client] / trunk / hammock / src / net35 / Hammock / Tasks / ITaskState.cs
1 using System;
2
3 namespace Hammock.Tasks
4 {
5     public interface ITaskState
6     {
7         int RepeatCount { get; set; }
8         DateTime? LastRepeat { get; set; }
9     }
10
11     public interface IRetryState :ITaskState
12     {
13     }
14 }