-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathRawModuleDefV8.g.cs
More file actions
48 lines (42 loc) · 1.52 KB
/
Copy pathRawModuleDefV8.g.cs
File metadata and controls
48 lines (42 loc) · 1.52 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
// 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 RawModuleDefV8
{
[DataMember(Name = "typespace")]
public Typespace Typespace;
[DataMember(Name = "tables")]
public System.Collections.Generic.List<TableDesc> Tables;
[DataMember(Name = "reducers")]
public System.Collections.Generic.List<ReducerDef> Reducers;
[DataMember(Name = "misc_exports")]
public System.Collections.Generic.List<MiscModuleExport> MiscExports;
public RawModuleDefV8(
Typespace Typespace,
System.Collections.Generic.List<TableDesc> Tables,
System.Collections.Generic.List<ReducerDef> Reducers,
System.Collections.Generic.List<MiscModuleExport> MiscExports
)
{
this.Typespace = Typespace;
this.Tables = Tables;
this.Reducers = Reducers;
this.MiscExports = MiscExports;
}
public RawModuleDefV8()
{
this.Typespace = new();
this.Tables = new();
this.Reducers = new();
this.MiscExports = new();
}
}
}