12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- namespace GxPress.Request.App.WaitHandle
- {
-
-
-
- public class WaitHandleAddOrUpdateRequest
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string Title { get; set; }
-
-
-
- public string Content { get; set; }
-
-
-
- public bool IsExecute { get; set; }
-
-
-
- public DateTime AlarmTime { get; set; }
-
-
-
- public int Minute { get; set; }
-
-
-
- public int Level { get; set; }
-
-
-
- public int LabelId { get; set; }
-
-
-
- public int UserId { get; set; }
- }
- }
|