- using FlutterCodeGenerator.ModelTypes;
- using System.Collections.Generic;
- namespace FlutterCodeGenerator.Map.Interface
- {
- internal interface IServiceMap
- {
- string GetServiceModelDartString();
- string GetServiceDartString();
- List<ComplexModelType> UsedComplexModelTypeList { get; }
- string ServiceName { get; }
- }
- }
|