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;
}