-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParameters.cs
More file actions
19 lines (18 loc) · 843 Bytes
/
Parameters.cs
File metadata and controls
19 lines (18 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace VLookUp;
internal class Parameters
{
public required string LookupWorkbook { get; set; }
public required string LookupWorksheet { get; set; }
public required string LookupColumn { get; set; }
public required string LookupOutputColumn { get; set; }
public required bool LookupWorksheetHasHeader { get; set; }
public required int LookupStartRow { get; set; }
public required int LookupEndRow { get; set; }
public required string SearchWorkbook { get; set; }
public required string SearchWorksheet { get; set; }
public required string SearchColumn { get; set; }
public required string SearchResultColumn { get; set; }
public required bool SearchWorksheetHasHeader { get; set; }
public required int SearchStartRow { get; set; }
public required int SearchEndRow { get; set; }
}