Job Expressions

Expressions can be triggered when jobs are created and closed
This commit is contained in:
Gary Sharp
2016-11-09 22:26:43 +11:00
parent 065b14b158
commit b52cbcb94a
22 changed files with 902 additions and 41 deletions
@@ -68,5 +68,17 @@ namespace Disco.Data.Configuration.Modules
get { return Get(new List<string>()); }
set { Set(value); }
}
public string OnCreateExpression
{
get { return Get<string>(null); }
set { Set(value); }
}
public string OnCloseExpression
{
get { return Get<string>(null); }
set { Set(value); }
}
}
}