diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-05 21:19:28 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-05 21:19:28 +0300 |
commit | 589246aaef847847b65d00e87fb5826603724e81 (patch) | |
tree | 98e8e9a7b8bd3e0379a08aced87102abc912f67c /Source/ExcelDNA/AddIn.cs | |
parent | cd96e10aa4eff487d8ff1bef3be392ee6568076f (diff) |
Move responseOrder field to AddIn class
Diffstat (limited to 'Source/ExcelDNA/AddIn.cs')
-rw-r--r-- | Source/ExcelDNA/AddIn.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/ExcelDNA/AddIn.cs b/Source/ExcelDNA/AddIn.cs index b62412d..25e5bfd 100644 --- a/Source/ExcelDNA/AddIn.cs +++ b/Source/ExcelDNA/AddIn.cs @@ -4,13 +4,24 @@ using System.Net.Http; namespace Rehau.Sku.Assist { + public enum ResponseOrder + { + NoSettings, + Relevance, + Name, + Price, + Series + } + public class AddIn : IExcelAddIn { public static readonly HttpClient httpClient = new HttpClient(); + public static ResponseOrder responseOrder; public void AutoOpen() { RegisterFunctions(); + responseOrder = ResponseOrder.NoSettings; } public void AutoClose() |