using JNPF.Common.Filter;
namespace JNPF.VisualDev.Entitys.Dto.VisualDev;
///
/// 在线开发列表查询输入.
///
public class VisualDevListQueryInput : PageInputBase
{
///
/// 功能类型
/// 1-Web设计,2-App设计,3-流程表单,4-Web表单,5-App表单.
///
public int type { get; set; } = 1;
///
/// 分类.
///
public string? category { get; set; }
}