Skip to content

Commit 047f32e

Browse files
authored
add method set configuration (#69)
1 parent d6818a5 commit 047f32e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/Regula.DocumentReader.WebClient/Api/DocumentReaderApi.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using System.Collections.Generic;
3+
using Regula.DocumentReader.WebClient.Client;
34
using Regula.DocumentReader.WebClient.Model;
45
using Regula.DocumentReader.WebClient.Model.Ext;
56

@@ -16,6 +17,12 @@ public DocumentReaderApi(string basePath)
1617
this._processApi = new ProcessApi(basePath);
1718
}
1819

20+
public Configuration Configuration
21+
{
22+
get => this._processApi.Configuration;
23+
set => this._processApi.Configuration = value;
24+
}
25+
1926
private string License { get; set; }
2027

2128
public RecognitionResponse Process(ProcessRequest processRequest)

0 commit comments

Comments
 (0)