12345678910111213141516 |
- using System;
- namespace FlutterCodeGenerator.ModelTypes
- {
- internal class ExtraObjectModelType : SimpleModelType
- {
- /// <summary>
- /// 用于嵌套中的类
- /// </summary>
- /// <param name="type"></param>
- /// <param name="name"></param>
- public ExtraObjectModelType(Type type, string name) : base(type, name)
- {
- }
- }
- }
|