Allow to get scribePromptUrl from LinagoraEcosystem
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import 'package:core/presentation/state/success.dart';
|
||||
import 'package:core/presentation/state/failure.dart';
|
||||
|
||||
class GetScribePromptUrlSuccess extends Success {
|
||||
final String? promptUrl;
|
||||
|
||||
GetScribePromptUrlSuccess(this.promptUrl);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [promptUrl];
|
||||
}
|
||||
|
||||
class GetScribePromptUrlFailure extends Failure {
|
||||
final dynamic exception;
|
||||
|
||||
GetScribePromptUrlFailure(this.exception);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [exception];
|
||||
}
|
||||
Reference in New Issue
Block a user