using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq.Expressions; using System.Text; using VOL.Entity.DomainModels; namespace VOL.Core.WorkFlow { public class WorkFlowTableOptions:Sys_WorkFlow { public List FilterList { get; set; } } public class FilterOptions : Sys_WorkFlowStep { public List FieldFilters { get; set; } public object Expression { get; set; } public string[] ParentIds { get; set; } } }