123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.App.WaitHandle
- {
- /// <summary>
- /// 删除待办事项
- /// </summary>
- public class DeleteWaitHandleRequest
- {
- /// <summary>
- /// 待办事项ID
- /// </summary>
- public List<int> Ids { get; set; }
- }
- }
|