You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
555 B

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<FilterOptions> FilterList { get; set; }
}
public class FilterOptions : Sys_WorkFlowStep
{
public List<FieldFilter> FieldFilters { get; set; }
public object Expression { get; set; }
public string[] ParentIds { get; set; }
}
}