Skip to content

Commit

Permalink
Add missing file headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Coding-Enthusiast committed Dec 30, 2024
1 parent b2ad480 commit 2b4abb4
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 8 deletions.
7 changes: 6 additions & 1 deletion SharpPusher/Services/Api.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using Newtonsoft.Json.Linq;
// SharpPusher
// Copyright (c) 2017 Coding Enthusiast
// Distributed under the MIT software license, see the accompanying
// file LICENCE or http://www.opensource.org/licenses/mit-license.php.

using Newtonsoft.Json.Linq;
using System;
using System.Net.Http;
using System.Threading.Tasks;
Expand Down
7 changes: 6 additions & 1 deletion SharpPusher/Services/ErrorCollection.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using System.Collections;
// SharpPusher
// Copyright (c) 2017 Coding Enthusiast
// Distributed under the MIT software license, see the accompanying
// file LICENCE or http://www.opensource.org/licenses/mit-license.php.

using System.Collections;
using System.Collections.Generic;
using System.Text;

Expand Down
7 changes: 6 additions & 1 deletion SharpPusher/Services/PushServices/BlockCypher.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using Newtonsoft.Json.Linq;
// SharpPusher
// Copyright (c) 2017 Coding Enthusiast
// Distributed under the MIT software license, see the accompanying
// file LICENCE or http://www.opensource.org/licenses/mit-license.php.

using Newtonsoft.Json.Linq;
using System.Threading.Tasks;

namespace SharpPusher.Services.PushServices
Expand Down
7 changes: 6 additions & 1 deletion SharpPusher/Services/PushServices/BlockExplorer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using Newtonsoft.Json.Linq;
// SharpPusher
// Copyright (c) 2017 Coding Enthusiast
// Distributed under the MIT software license, see the accompanying
// file LICENCE or http://www.opensource.org/licenses/mit-license.php.

using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Net.Http;
Expand Down
7 changes: 6 additions & 1 deletion SharpPusher/Services/PushServices/BlockchainInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using Newtonsoft.Json;
// SharpPusher
// Copyright (c) 2017 Coding Enthusiast
// Distributed under the MIT software license, see the accompanying
// file LICENCE or http://www.opensource.org/licenses/mit-license.php.

using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Net.Http;
Expand Down
7 changes: 6 additions & 1 deletion SharpPusher/Services/PushServices/Blockchair.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using Newtonsoft.Json.Linq;
// SharpPusher
// Copyright (c) 2017 Coding Enthusiast
// Distributed under the MIT software license, see the accompanying
// file LICENCE or http://www.opensource.org/licenses/mit-license.php.

using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Net;
Expand Down
7 changes: 6 additions & 1 deletion SharpPusher/Services/PushServices/Smartbit.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
using Newtonsoft.Json.Linq;
// SharpPusher
// Copyright (c) 2017 Coding Enthusiast
// Distributed under the MIT software license, see the accompanying
// file LICENCE or http://www.opensource.org/licenses/mit-license.php.

using Newtonsoft.Json.Linq;
using System.Threading.Tasks;

namespace SharpPusher.Services.PushServices
Expand Down
7 changes: 6 additions & 1 deletion SharpPusher/Services/Response.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
namespace SharpPusher.Services
// SharpPusher
// Copyright (c) 2017 Coding Enthusiast
// Distributed under the MIT software license, see the accompanying
// file LICENCE or http://www.opensource.org/licenses/mit-license.php.

namespace SharpPusher.Services
{
public class Response<T>
{
Expand Down

0 comments on commit 2b4abb4

Please sign in to comment.