1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using GxPress.Entity.WorkProcessDto;
- namespace GxPress.Result.App.Flow
- {
- public class NodeResult
- {
-
-
-
- public string AvatarUrl { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string Action { get; set; }
-
-
-
- public DateTime? CreatedDate { get; set; }
-
-
-
- public string Message {get;set;}
-
-
-
- public IEnumerable<string> FileUrls { get; set; }
- }
- }
|