jld3103
2 years ago
9 changed files with 33 additions and 15 deletions
@ -0,0 +1,21 @@ |
|||||||
|
part of '../../neon.dart'; |
||||||
|
|
||||||
|
abstract class NotificationsAppInterface |
||||||
|
extends AppImplementation<NotificationsBlocInterface, NotificationsOptionsInterface> { |
||||||
|
NotificationsAppInterface( |
||||||
|
super.sharedPreferences, |
||||||
|
super.requestManager, |
||||||
|
super.platform, |
||||||
|
); |
||||||
|
} |
||||||
|
|
||||||
|
abstract class NotificationsBlocInterface extends InteractiveBloc { |
||||||
|
NotificationsBlocInterface(this.options); |
||||||
|
|
||||||
|
final NotificationsOptionsInterface options; |
||||||
|
void deleteNotification(final int id); |
||||||
|
} |
||||||
|
|
||||||
|
abstract class NotificationsOptionsInterface extends NextcloudAppSpecificOptions { |
||||||
|
NotificationsOptionsInterface(super.storage); |
||||||
|
} |
Loading…
Reference in new issue