ExtraObjectModelType.cs 232 B

1234567891011
  1. using System;
  2. namespace FlutterCodeGenerator.ModelTypes
  3. {
  4. internal class ExtraObjectModelType : SimpleModelType
  5. {
  6. public ExtraObjectModelType(Type type, string name) : base(type, name)
  7. {
  8. }
  9. }
  10. }