| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.Linq; |
| | | 4 | | using System.Runtime.Serialization; |
| | | 5 | | using System.Text; |
| | | 6 | | using System.Threading.Tasks; |
| | | 7 | | |
| | | 8 | | namespace Xrm.Oss.XTL.Templating |
| | | 9 | | { |
| | | 10 | | [DataContract] |
| | | 11 | | public class ProcessingResult |
| | | 12 | | { |
| | | 13 | | [DataMember(Name = "success")] |
| | 22 | 14 | | public bool Success { get; set; } |
| | | 15 | | |
| | | 16 | | [DataMember(Name = "traceLog")] |
| | 22 | 17 | | public string TraceLog { get; set; } |
| | | 18 | | |
| | | 19 | | [DataMember(Name = "result")] |
| | 20 | 20 | | public string Result { get; set; } |
| | | 21 | | |
| | | 22 | | [DataMember(Name = "error")] |
| | 13 | 23 | | public string Error { get; set; } |
| | | 24 | | } |
| | | 25 | | } |