Skip to content

Commit a3f4ecb

Browse files
committed
Update demo types
1 parent 5c5729c commit a3f4ecb

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

demos/CommandLine/Demo.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,13 @@
1111

1212
class Demo
1313
{
14-
private record ListResult(string id, string name, string owner_id, string created_at);
14+
private record ListResult
15+
{
16+
public string id;
17+
public string owner_id;
18+
public string name;
19+
public string created_at;
20+
}
1521
static async Task Main()
1622
{
1723
var db = new PowerSyncDatabase(new PowerSyncDatabaseOptions

0 commit comments

Comments
 (0)