12345678910111213141516171819202122232425262728293031 |
-
- using System;
- using System.IO;
- using Newtonsoft.Json;
- using SAGA.DotNetUtils.Serializer;
- namespace Saga.PlugIn.CreateFacility
- {
-
-
-
- public class ParseFacilityTabCode
- {
- public static MFacilityTabCode Parse(string json)
- {
- try
- {
- return JsonConvert.DeserializeObject<MFacilityTabCode>(json);
- }
- catch (Exception e)
- {
- return null;
- }
- }
- }
- }
|