1234567891011121314151617181920212223242526272829303132333435 |
-
- using Newtonsoft.Json;
- using Newtonsoft.Json.Converters;
- namespace ServiceRevitLib.Mode
- {
-
-
-
- public class ResultBase
- {
- public ResultBase()
- {
- Result = ResultState.Success;
- }
-
-
-
- [JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
- public string ResultMsg { get; set; }
-
-
-
- [JsonConverter(typeof(StringEnumConverter))]
- public ResultState Result { get; set; }
- }
- }
|