namespace e_suite.Workflow.Core; public static class ObjectExtensions { public static bool In(this T obj, params T[] args) { return args.Contains(obj); } }