public static T LoadBinaryFile <T>(string fullPath, bool isCloud)
     where T : class
 {
     return(FileHelpers.LoadBinaryFile <T>(fullPath, isCloud, new JsonSerializerSettings()));
 }
        ////////////////

        public static bool SaveBinaryFile <T>(T obj, string fullPath, bool isCloud, bool backupOld)
            where T : class
        {
            return(FileHelpers.SaveBinaryFile <T>(obj, fullPath, isCloud, backupOld, new JsonSerializerSettings()));
        }