add IUptimeClient interface

This commit is contained in:
2013-10-28 21:06:07 +01:00
parent 3e6d93d495
commit c1cb0cb505
2 changed files with 12 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UptimeSharp
{
public interface IUptimeClient
{
}
}
+1 -1
View File
@@ -5,7 +5,7 @@ using System.Text;
namespace UptimeSharp
{
class UptimeClient
public class UptimeClient : IUptimeClient
{
}
}