using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IBox.WinFrmUI
|
{
|
public class IBoxFilterViewModel
|
{
|
public bool IsFlowFilter { get; set; }
|
|
public bool IsPressFilter { get; set; }
|
|
public IBoxFilterConfigViewModel FlowFilterConfig { get; set; }
|
|
public IBoxFilterConfigViewModel PressFilterConfig { get; set; }
|
}
|
}
|