Switch to submodules, support multiple patterns, add options dialog, add license and initial readme

This commit is contained in:
2018-02-08 14:14:46 -05:00
parent 438433e022
commit 6fec068715
27 changed files with 1103 additions and 80 deletions

9
WindowPattern.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace WorkIndicator
{
public class WindowPattern
{
public string Name { get; set; } = string.Empty;
public string Pattern { get; set; } = string.Empty;
public bool Enabled { get; set; }
}
}