SimpleModelType.cs 216 B

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