Initial commit to GitHub

This commit is contained in:
2018-03-26 16:22:22 -04:00
commit 66f5b7ee0a
16 changed files with 944 additions and 0 deletions

12
Status.cs Normal file
View File

@@ -0,0 +1,12 @@
namespace HomeStatusWindow
{
// ReSharper disable once ClassNeverInstantiated.Global
public class Status
{
// ReSharper disable once UnusedAutoPropertyAccessor.Global
public bool? Washer { get; set; }
// ReSharper disable once UnusedAutoPropertyAccessor.Global
public bool? Dryer { get; set; }
}
}