csharp-sdk-upm/Storage/Internal/Object/LCSubClassInfo.cs

24 lines
503 B
C#
Raw Normal View History

2020-02-19 18:50:51 +08:00
using System;
2020-02-19 18:50:51 +08:00
namespace LeanCloud.Storage.Internal.Object {
internal class LCSubclassInfo {
internal string ClassName {
get;
}
internal Type Type {
get;
}
internal Func<LCObject> Constructor {
get;
}
internal LCSubclassInfo(string className, Type type, Func<LCObject> constructor) {
ClassName = className;
Type = type;
Constructor = constructor;
2020-02-19 18:50:51 +08:00
}
}
}