diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..0f16dd9 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,27 @@ + + +Resolves #ISSUE_NUMBER + +---- + +### Before the change? + + +* + +### After the change? + + +* + +### Pull request checklist +- [ ] Tests for the changes have been added (for bug fixes/features) +- [ ] Docs have been reviewed and added/updated if needed (for bug fixes/features) + +### Does this introduce a breaking change? + + +- [ ] Yes +- [ ] No + +---- diff --git a/Src/RpcClient/Domain/OrderStatus.cs b/Src/RpcClient/Domain/OrderStatus.cs index 01ba0c4..634859d 100644 --- a/Src/RpcClient/Domain/OrderStatus.cs +++ b/Src/RpcClient/Domain/OrderStatus.cs @@ -18,5 +18,5 @@ public enum OrderStatus /// /// The declined /// - Declined + Declined, } diff --git a/Src/RpcWorker/Domain/OrderStatus.cs b/Src/RpcWorker/Domain/OrderStatus.cs index ca27c5a..fdad0d3 100644 --- a/Src/RpcWorker/Domain/OrderStatus.cs +++ b/Src/RpcWorker/Domain/OrderStatus.cs @@ -18,5 +18,5 @@ public enum OrderStatus /// /// The declined /// - Declined + Declined, }