- namespace SHJX.Service.Model.EventArgs
- {
- public class TaskResultArgs
- {
- public string Name { get; set; }
- public string Amount { get; set; }
- public string Result { get; set; }
- public string ResultColor { get; set; }
- public TaskResultArgs()
- {
- ResultColor = "#000000";
- }
- }
- }
|