using System; using System.Collections.Generic; namespace LeanCloud.Storage.Internal { /// /// Represents an object that can be converted into JSON. /// public interface IJsonConvertible { /// /// Converts the object to a data structure that can be converted to JSON. /// /// An object to be JSONified. IDictionary ToJSON(); } }