123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.App.Flow
- {
-
-
-
- public class FlowListRequest
- {
-
-
-
- public string Type { get; set; }
-
-
-
- public List<int> ProcessIds { get; set; }
-
-
-
- public string Keyword { get; set; }
-
-
-
- public int Page { get; set; }
-
-
-
- public int PerPage { get; set; }
-
-
-
- public FlowListRequest()
- {
- ProcessIds = new List<int>();
- }
- }
- }
|