mirror of
https://github.com/Iconica-Development/flutter_registration.git
synced 2025-05-19 21:33:44 +02:00
10 lines
157 B
Dart
10 lines
157 B
Dart
|
import 'package:flutter_registration/src/model/auth_field.dart';
|
||
|
|
||
|
class AuthStep {
|
||
|
AuthStep({
|
||
|
required this.fields,
|
||
|
});
|
||
|
|
||
|
List<AuthField> fields;
|
||
|
}
|