Record.Values

This commit is contained in:
Michał Zieliński
2023-08-21 13:00:05 +02:00
parent d51abf90ee
commit e8c64059fb
11 changed files with 792 additions and 13 deletions

View File

@@ -22,7 +22,7 @@ namespace WebAPI.Exports
List<IList<object>> data = new List<IList<object>>() { new List<object>() { layer.Name!, layer.Number! } };
foreach (Record record in layer.Records!)
{
data.Add(new List<object> { record.Code!, record.Value });
data.Add(new List<object> { record.Code!, record.Value1! });
}
Google.Apis.Drive.v3.Data.File body = new Google.Apis.Drive.v3.Data.File();