From 00a491d93733d4625ad329b2ba8237f445364b3f Mon Sep 17 00:00:00 2001 From: Mirta Date: Wed, 30 Dec 2020 16:39:52 +0200 Subject: merge --- .../FileSystem/FileSystemOperation.cs | 51 ---------------------- 1 file changed, 51 deletions(-) delete mode 100644 Software/Visual_Studio/PPC/Tango.PPC.Common/FileSystem/FileSystemOperation.cs (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/FileSystem/FileSystemOperation.cs') diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/FileSystem/FileSystemOperation.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/FileSystem/FileSystemOperation.cs deleted file mode 100644 index 9fba7a874..000000000 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/FileSystem/FileSystemOperation.cs +++ /dev/null @@ -1,51 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Tango.PPC.Common.FileSystem -{ - /// - /// Represents an active file system file/folder download/upload operation - /// - public class FileSystemOperation - { - /// - /// Gets or sets the operation mode. - /// - public FileSystemOperationMode Mode { get; set; } - - /// - /// Gets or sets the operation identifier. - /// - public String Id { get; set; } - - /// - /// Gets or sets the path for the operation. - /// - public String Path { get; set; } - - /// - /// Should be set to true when the is a temporary zip file when performing download of a folder. - /// - public bool IsPathTempZip { get; set; } - - /// - /// Gets or sets the actual path to extract the zip file when uploading folder. - /// - public String UploadPostPath { get; set; } - - /// - /// Initializes a new instance of the class. - /// - /// The mode. - /// The path. - public FileSystemOperation(FileSystemOperationMode mode, String path) - { - Mode = mode; - Id = Guid.NewGuid().ToString(); - Path = path; - } - } -} -- cgit v1.3.1