Skip to content

Commit db1c592

Browse files
committed
feat: add find method
1 parent 0890434 commit db1c592

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

Storage/FileOptions.cs

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using Newtonsoft.Json;
1+
using System.Collections.Generic;
2+
using Newtonsoft.Json;
23

34
namespace Supabase.Storage
45
{
@@ -12,5 +13,14 @@ public class FileOptions
1213

1314
[JsonProperty("upsert")]
1415
public bool Upsert { get; set; }
16+
17+
[JsonProperty("duplex")]
18+
public string? Duplex { get; set; }
19+
20+
[JsonProperty("metadata")]
21+
public Dictionary<string, string>? Metadata { get; set; }
22+
23+
[JsonProperty("headers")]
24+
public Dictionary<string, string>? Headers { get; set; }
1525
}
1626
}

0 commit comments

Comments
 (0)