forked from linagora/linshare-mobile-flutter-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
share upload request entry presentation layer (linagora#571)
- Loading branch information
Julian KOUNE
committed
Sep 9, 2021
1 parent
24f4dcc
commit c62c233
Showing
6 changed files
with
208 additions
and
118 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
lib/presentation/widget/share_upload_request_entry/share_upload_request_entry_arguments.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// LinShare is an open source filesharing software, part of the LinPKI software | ||
// suite, developed by Linagora. | ||
// | ||
// Copyright (C) 2020 LINAGORA | ||
// | ||
// This program is free software: you can redistribute it and/or modify it under the | ||
// terms of the GNU Affero General Public License as published by the Free Software | ||
// Foundation, either version 3 of the License, or (at your option) any later version, | ||
// provided you comply with the Additional Terms applicable for LinShare software by | ||
// Linagora pursuant to Section 7 of the GNU Affero General Public License, | ||
// subsections (b), (c), and (e), pursuant to which you must notably (i) retain the | ||
// display in the interface of the “LinShare™” trademark/logo, the "Libre & Free" mention, | ||
// the words “You are using the Free and Open Source version of LinShare™, powered by | ||
// Linagora © 2009–2020. Contribute to Linshare R&D by subscribing to an Enterprise | ||
// offer!”. You must also retain the latter notice in all asynchronous messages such as | ||
// e-mails sent with the Program, (ii) retain all hypertext links between LinShare and | ||
// http://www.linshare.org, between linagora.com and Linagora, and (iii) refrain from | ||
// infringing Linagora intellectual property rights over its trademarks and commercial | ||
// brands. Other Additional Terms apply, see | ||
// <http://www.linshare.org/licenses/LinShare-License_AfferoGPL-v3.pdf> | ||
// for more details. | ||
// This program is distributed in the hope that it will be useful, but WITHOUT ANY | ||
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for | ||
// more details. | ||
// You should have received a copy of the GNU Affero General Public License and its | ||
// applicable Additional Terms for LinShare along with this program. If not, see | ||
// <http://www.gnu.org/licenses/> for the GNU Affero General Public License version | ||
// 3 and <http://www.linshare.org/licenses/LinShare-License_AfferoGPL-v3.pdf> for | ||
// the Additional Terms applicable to LinShare software. | ||
|
||
import 'package:domain/domain.dart'; | ||
import 'package:linshare_flutter_app/presentation/util/data_structure/router_arguments.dart'; | ||
|
||
class ShareUploadRequestEntryArguments extends RouterArguments { | ||
List<UploadRequestEntry> entries; | ||
|
||
ShareUploadRequestEntryArguments(this.entries); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.