I'm succesfully adding those data to firestore with my visual studio c# application using the library:
Google.Cloud.Firestore
now, I need to add a new field the timestamp but how to decleare it? I haven't find a property for it. Any suggestion?
Thanks
CollectionReference coll = database.Collection("reports");
Dictionary<string, object> data1 = new Dictionary<string, object>()
{
{"fileId", fileId},
{"fileName", fileName},
{"type", type},
{"userId", userId},
{"url", urlReport },
{"plantId", plantId },
};
coll.AddAsync(data1);