-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
177 changed files
with
5,518 additions
and
1,221 deletions.
There are no files selected for viewing
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
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
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,31 @@ | ||
/* | ||
* Copyright (c) 2021 Proton Technologies AG | ||
* | ||
* This file is part of ProtonVPN. | ||
* | ||
* ProtonVPN is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* ProtonVPN 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with ProtonVPN. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
namespace ProtonVPN.BugReporting.Actions | ||
{ | ||
public abstract class CategoryAction | ||
{ | ||
public string Category { get; } | ||
|
||
protected CategoryAction(string category) | ||
{ | ||
Category = category; | ||
} | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
src/ProtonVPN.App/BugReporting/Actions/FillTheFormAction.cs
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,28 @@ | ||
/* | ||
* Copyright (c) 2021 Proton Technologies AG | ||
* | ||
* This file is part of ProtonVPN. | ||
* | ||
* ProtonVPN is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* ProtonVPN 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with ProtonVPN. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
namespace ProtonVPN.BugReporting.Actions | ||
{ | ||
public class FillTheFormAction : CategoryAction | ||
{ | ||
public FillTheFormAction(string category) : base(category) | ||
{ | ||
} | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
src/ProtonVPN.App/BugReporting/Actions/FinishReportAction.cs
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,26 @@ | ||
/* | ||
* Copyright (c) 2021 Proton Technologies AG | ||
* | ||
* This file is part of ProtonVPN. | ||
* | ||
* ProtonVPN is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* ProtonVPN 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with ProtonVPN. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
|
||
namespace ProtonVPN.BugReporting.Actions | ||
{ | ||
public class FinishReportAction | ||
{ | ||
} | ||
} |
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,31 @@ | ||
/* | ||
* Copyright (c) 2021 Proton Technologies AG | ||
* | ||
* This file is part of ProtonVPN. | ||
* | ||
* ProtonVPN is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* ProtonVPN 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with ProtonVPN. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
namespace ProtonVPN.BugReporting.Actions | ||
{ | ||
public class FormStateChange | ||
{ | ||
public FormStateChange(FormState state) | ||
{ | ||
State = state; | ||
} | ||
|
||
public FormState State { get; } | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
src/ProtonVPN.App/BugReporting/Actions/GoBackAfterFailureAction.cs
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,25 @@ | ||
/* | ||
* Copyright (c) 2021 Proton Technologies AG | ||
* | ||
* This file is part of ProtonVPN. | ||
* | ||
* ProtonVPN is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* ProtonVPN 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with ProtonVPN. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
namespace ProtonVPN.BugReporting.Actions | ||
{ | ||
public class GoBackAfterFailureAction | ||
{ | ||
} | ||
} |
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,25 @@ | ||
/* | ||
* Copyright (c) 2021 Proton Technologies AG | ||
* | ||
* This file is part of ProtonVPN. | ||
* | ||
* ProtonVPN is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* ProtonVPN 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with ProtonVPN. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
namespace ProtonVPN.BugReporting.Actions | ||
{ | ||
public class RetryAction | ||
{ | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
src/ProtonVPN.App/BugReporting/Actions/SelectCategoryAction.cs
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,28 @@ | ||
/* | ||
* Copyright (c) 2021 Proton Technologies AG | ||
* | ||
* This file is part of ProtonVPN. | ||
* | ||
* ProtonVPN is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* ProtonVPN 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with ProtonVPN. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
namespace ProtonVPN.BugReporting.Actions | ||
{ | ||
public class SelectCategoryAction : CategoryAction | ||
{ | ||
public SelectCategoryAction(string category) : base(category) | ||
{ | ||
} | ||
} | ||
} |
Oops, something went wrong.