diff --git a/UptimeSharp/IUptimeClient.cs b/UptimeSharp/IUptimeClient.cs new file mode 100644 index 0000000..f6ec21d --- /dev/null +++ b/UptimeSharp/IUptimeClient.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace UptimeSharp +{ + public interface IUptimeClient + { + } +} diff --git a/UptimeSharp/UptimeClient.cs b/UptimeSharp/UptimeClient.cs index 077f3d8..d09f825 100644 --- a/UptimeSharp/UptimeClient.cs +++ b/UptimeSharp/UptimeClient.cs @@ -5,7 +5,7 @@ using System.Text; namespace UptimeSharp { - class UptimeClient + public class UptimeClient : IUptimeClient { } }