You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
320 B
14 lines
320 B
import 'package:notifications/models/index.dart';
|
|
|
|
class NotificationsState {
|
|
NotificationsState({
|
|
this.notifications = const [],
|
|
this.hasMore = true,
|
|
this.skipCount = 0,
|
|
this.maxResultCount = 10,
|
|
});
|
|
bool hasMore;
|
|
int skipCount;
|
|
int maxResultCount;
|
|
List<UserNotificationDto> notifications;
|
|
}
|