whisper_flutter_new/lib/bean/whisper_dto.dart
小草林(田梓萱) af91fc48cb
feat: publish v1.0.1
Signed-off-by: 小草林(田梓萱) <xcl@xuegao-tzx.top>
2024-06-12 10:31:01 +08:00

9 lines
214 B
Dart

/// Common whisper request
abstract class WhisperRequestDto {
/// Convert current request to String encoded whisper json
String toRequestString();
/// Type of request or response
String get specialType;
}