-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathRawTableDefV8.g.cs
More file actions
67 lines (61 loc) · 2.29 KB
/
Copy pathRawTableDefV8.g.cs
File metadata and controls
67 lines (61 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// THIS FILE IS AUTOMATICALLY GENERATED BY SPACETIMEDB. EDITS TO THIS FILE
// WILL NOT BE SAVED. MODIFY TABLES IN YOUR MODULE SOURCE CODE INSTEAD.
// This was generated using spacetimedb cli version 1.2.0 (commit 1814483514681baeedb23e1dadd342dac4697ac5).
#nullable enable
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
namespace SpacetimeDB.Internal
{
[SpacetimeDB.Type]
[DataContract]
public sealed partial class RawTableDefV8
{
[DataMember(Name = "table_name")]
public string TableName;
[DataMember(Name = "columns")]
public System.Collections.Generic.List<RawColumnDefV8> Columns;
[DataMember(Name = "indexes")]
public System.Collections.Generic.List<RawIndexDefV8> Indexes;
[DataMember(Name = "constraints")]
public System.Collections.Generic.List<RawConstraintDefV8> Constraints;
[DataMember(Name = "sequences")]
public System.Collections.Generic.List<RawSequenceDefV8> Sequences;
[DataMember(Name = "table_type")]
public string TableType;
[DataMember(Name = "table_access")]
public string TableAccess;
[DataMember(Name = "scheduled")]
public string? Scheduled;
public RawTableDefV8(
string TableName,
System.Collections.Generic.List<RawColumnDefV8> Columns,
System.Collections.Generic.List<RawIndexDefV8> Indexes,
System.Collections.Generic.List<RawConstraintDefV8> Constraints,
System.Collections.Generic.List<RawSequenceDefV8> Sequences,
string TableType,
string TableAccess,
string? Scheduled
)
{
this.TableName = TableName;
this.Columns = Columns;
this.Indexes = Indexes;
this.Constraints = Constraints;
this.Sequences = Sequences;
this.TableType = TableType;
this.TableAccess = TableAccess;
this.Scheduled = Scheduled;
}
public RawTableDefV8()
{
this.TableName = "";
this.Columns = new();
this.Indexes = new();
this.Constraints = new();
this.Sequences = new();
this.TableType = "";
this.TableAccess = "";
}
}
}