-
Notifications
You must be signed in to change notification settings - Fork 1
/
Index_Files.cs
41 lines (25 loc) · 1 KB
/
Index_Files.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
namespace CLISC
{
public class fileIndex
{
// Create public data types for use in fileIndex
public string? File_Folder { get; set; }
public string Org_Filepath { get; set; }
public string Org_Filename { get; set; }
public string Org_Extension { get; set; }
public string? Copy_Filepath { get; set; }
public string? Copy_Filename { get; set; }
public string? Copy_Extension { get; set; }
public string? Conv_Filepath { get; set; }
public string? Conv_Filename { get; set; }
public string? Conv_Extension { get; set; }
public string? XLSX_Conv_Filepath { get; set; }
public string? XLSX_Conv_Filename { get; set; }
public string? XLSX_Conv_Extension { get; set; }
public string? ODS_Conv_Filepath { get; set; }
public string? ODS_Conv_Filename { get; set; }
public string? ODS_Conv_Extension { get; set; }
public bool? Convert_Success { get; set; }
}
}