diff options
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Shared/Logs')
4 files changed, 0 insertions, 62 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Logs/GetLogFilesRequest.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Logs/GetLogFilesRequest.cs deleted file mode 100644 index bb5d21837..000000000 --- a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Logs/GetLogFilesRequest.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Tango.PPC.Shared.Logs -{ - public class GetLogFilesRequest - { - public RemoteLogFileType LogFileType { get; set; } - } -} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Logs/GetLogFilesResponse.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Logs/GetLogFilesResponse.cs deleted file mode 100644 index cf5d59726..000000000 --- a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Logs/GetLogFilesResponse.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Tango.PPC.Shared.Logs -{ - public class GetLogFilesResponse - { - public List<RemoteLogFile> LogFiles { get; set; } - - public GetLogFilesResponse() - { - LogFiles = new List<RemoteLogFile>(); - } - } -} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Logs/RemoteLogFile.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Logs/RemoteLogFile.cs deleted file mode 100644 index fc2ba88c4..000000000 --- a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Logs/RemoteLogFile.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Tango.PPC.Shared.Logs -{ - public class RemoteLogFile - { - public String Name { get; set; } - public DateTime DateModified { get; set; } - public DateTime DateCreated { get; set; } - public String Path { get; set; } - public long Length { get; set; } - } -} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Logs/RemoteLogFileType.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Logs/RemoteLogFileType.cs deleted file mode 100644 index 958b4c195..000000000 --- a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Logs/RemoteLogFileType.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Tango.PPC.Shared.Logs -{ - public enum RemoteLogFileType - { - Application, - Firmware - } -} |
