From 7ea5427a86e1c9bf9314195d0d7f4f2c7600a7e8 Mon Sep 17 00:00:00 2001 From: Generoso Martello Date: Fri, 30 Oct 2015 00:12:01 +0100 Subject: [PATCH] added missing file SourceModule.cs --- HomeGenie/Service/Constants/SourceModule.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 HomeGenie/Service/Constants/SourceModule.cs diff --git a/HomeGenie/Service/Constants/SourceModule.cs b/HomeGenie/Service/Constants/SourceModule.cs new file mode 100644 index 000000000..2d6a83339 --- /dev/null +++ b/HomeGenie/Service/Constants/SourceModule.cs @@ -0,0 +1,13 @@ +using System; + +namespace HomeGenie +{ + public static class SourceModule + { + // HomeGenie System Source + public const string Master = "0"; + // HomeGenie Scheduler Source + public const string Scheduler = "Scheduler"; + } +} +