From cf81fa5d4c4927858f312cfa520f2acd58a2e2e3 Mon Sep 17 00:00:00 2001 From: Victoria Plitt Date: Sun, 2 Feb 2020 14:02:00 +0200 Subject: GUI changes according to review item. Related Work Items: #2402 --- Software/Visual_Studio/Tango.Logging/LogFile.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'Software/Visual_Studio/Tango.Logging') diff --git a/Software/Visual_Studio/Tango.Logging/LogFile.cs b/Software/Visual_Studio/Tango.Logging/LogFile.cs index 24a8a11f2..c86ec1792 100644 --- a/Software/Visual_Studio/Tango.Logging/LogFile.cs +++ b/Software/Visual_Studio/Tango.Logging/LogFile.cs @@ -8,14 +8,35 @@ namespace Tango.Logging { public class LogFile { + /// + /// Gets or sets the date time started Log file. + /// public DateTime DateTime { get; set; } + /// + /// Gets or sets the full path of file. + /// public String File { get; set; } + /// + /// Gets or sets the name of the file. + /// + public String FileName { get; set; } + + /// + /// Gets or sets a value indicating whether set of files + /// public bool PartOfSet { get; set; } + + /// + /// Gets or sets the start index of the set. + /// public int SetStartIndex { get; set; } + /// + /// Gets or sets the set count of set. + /// public int SetCount { get; set; } } } -- cgit v1.3.1