Skip to content

Commit

Permalink
feat: change namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
dedo1911 committed Mar 19, 2024
1 parent a61019c commit 974d3a7
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Constants.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace LogFlake
namespace NLogFlake
{
public static class Servers
{
Expand Down
4 changes: 2 additions & 2 deletions LogFlake.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using LogFlake.Models;
using Newtonsoft.Json;
using NLogFlake.Models;

namespace LogFlake
namespace NLogFlake
{
public class LogFlake
{
Expand Down
2 changes: 1 addition & 1 deletion LogFlakeException.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Runtime.Serialization;

namespace LogFlake
namespace NLogFlake
{
[Serializable]
public class LogFlakeException : ApplicationException
Expand Down
2 changes: 1 addition & 1 deletion Models/LogObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using Newtonsoft.Json;

namespace LogFlake.Models
namespace NLogFlake.Models
{
internal class LogObject
{
Expand Down
2 changes: 1 addition & 1 deletion Models/PendingLog.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace LogFlake.Models
namespace NLogFlake.Models
{
internal class PendingLog
{
Expand Down
2 changes: 1 addition & 1 deletion PerformanceCounter.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Diagnostics;

namespace LogFlake
namespace NLogFlake
{
public class PerformanceCounter
{
Expand Down

0 comments on commit 974d3a7

Please sign in to comment.