diff options
author | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-03-31 00:54:02 +0200 |
---|---|---|
committer | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-03-31 00:54:02 +0200 |
commit | 2fc73b8307778797e3c55016087e5fcd9cdb670c (patch) | |
tree | 7cc6a776a69267cc2d4798c4ff3b36f51d28bde4 | |
parent | be10612685c733517393b5aa88136a4ad3f845d9 (diff) |
Ispravljen tip podatka.
-rw-r--r-- | backend/api/api/Models/Model.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/api/api/Models/Model.cs b/backend/api/api/Models/Model.cs index 26f732ee..86541767 100644 --- a/backend/api/api/Models/Model.cs +++ b/backend/api/api/Models/Model.cs @@ -45,7 +45,7 @@ namespace api.Models public int epochs { get; set; } public string nullValues { get; set; } - public string[] nullValuesReplacers { get; set; } + public NullValues[] nullValuesReplacers { get; set; } //public NullValues[] nullValues { get; set; } } |