mirror of
https://github.com/ckaczor/WorkIndicator.git
synced 2026-01-13 17:23:18 -05:00
10 lines
233 B
C#
10 lines
233 B
C#
namespace WorkIndicator
|
|
{
|
|
public class WindowPattern
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Pattern { get; set; } = string.Empty;
|
|
public bool Enabled { get; set; }
|
|
}
|
|
}
|