using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; 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; } } }