1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Request.App.WaitHandle
- {
-
-
-
- public class WaitHandleLabelAddOrUpdateRequest
- {
-
-
-
- public string Title { get; set; }
-
-
-
- public int Id { get; set; }
-
-
-
- public int UserId { get; set; }
- }
- }
|