Skip to content

Commit 7203007

Browse files
authored
Code Quality: Re-organize the structure of Files.App.Storage (#17340)
1 parent 7b4325a commit 7203007

35 files changed

+19
-19
lines changed

src/Files.App.Storage/Storables/FtpStorage/FtpHelpers.cs renamed to src/Files.App.Storage/Ftp/FtpHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using Files.Shared.Extensions;
55
using FluentFTP;
66

7-
namespace Files.App.Storage.Storables
7+
namespace Files.App.Storage
88
{
99
internal static class FtpHelpers
1010
{

src/Files.App.Storage/Storables/FtpStorage/FtpManager.cs renamed to src/Files.App.Storage/Ftp/FtpManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System.Net;
55

6-
namespace Files.App.Storage.Storables
6+
namespace Files.App.Storage
77
{
88
public static class FtpManager
99
{

src/Files.App.Storage/Storables/FtpStorage/FtpStorable.cs renamed to src/Files.App.Storage/Ftp/FtpStorable.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using FluentFTP;
55

6-
namespace Files.App.Storage.Storables
6+
namespace Files.App.Storage
77
{
88
public abstract class FtpStorable : IStorableChild
99
{

src/Files.App.Storage/Storables/FtpStorage/FtpStorageFile.cs renamed to src/Files.App.Storage/Ftp/FtpStorageFile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using System.IO;
55

6-
namespace Files.App.Storage.Storables
6+
namespace Files.App.Storage
77
{
88
public sealed class FtpStorageFile : FtpStorable, IChildFile
99
{

src/Files.App.Storage/Storables/FtpStorage/FtpStorageFolder.cs renamed to src/Files.App.Storage/Ftp/FtpStorageFolder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using System.IO;
77
using System.Runtime.CompilerServices;
88

9-
namespace Files.App.Storage.Storables
9+
namespace Files.App.Storage
1010
{
1111
public sealed class FtpStorageFolder : FtpStorable, IModifiableFolder, IChildFolder, IDirectCopy, IDirectMove, IGetFirstByName
1212
{

src/Files.App.Storage/Storables/FtpStorage/FtpStorageService.cs renamed to src/Files.App.Storage/Ftp/FtpStorageService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using FluentFTP;
55
using System.IO;
66

7-
namespace Files.App.Storage.Storables
7+
namespace Files.App.Storage
88
{
99
/// <inheritdoc cref="IFtpStorageService"/>
1010
public sealed class FtpStorageService : IFtpStorageService

0 commit comments

Comments
 (0)