POS improvements (#4668)

This commit is contained in:
d11n
2023-02-23 09:52:37 +01:00
committed by GitHub
parent ddb125f458
commit 66e1eee010
11 changed files with 92 additions and 56 deletions

View File

@@ -9,7 +9,7 @@ namespace BTCPayServer.Models
public string FormUrl { get; set; }
public bool AllowExternal { get; set; }
public MultiValueDictionary<string, string> FormParameters { get; set; } = new MultiValueDictionary<string, string>();
public Dictionary<string, string> RouteParameters { get; set; } = new Dictionary<string, string>();
public MultiValueDictionary<string, string> FormParameters { get; set; } = new ();
public Dictionary<string, string> RouteParameters { get; set; } = new ();
}
}