using System; namespace LeanCloud.Storage.Internal.Object { internal class LCSubclassInfo { internal string ClassName { get; } internal Type Type { get; } internal Func Constructor { get; } internal LCSubclassInfo(string className, Type type, Func constructor) { ClassName = className; Type = type; Constructor = constructor; } } }