1234567891011121314151617181920212223242526272829 |
-
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace MBIRevitBase.Result
- {
-
-
-
- public class HttpResult
- {
- public string Message { get; set; }
- public string Result { get; set; }
- public static implicit operator HttpResult(string result)
- {
- return JsonConvert.DeserializeObject<HttpResult>(result);
- }
- }
- }
|