This repository has been archived on 2025-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
whisper_flutter_new/lib/bean/whisper_dto.dart

9 lines
214 B
Dart
Raw Normal View History

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