mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-11 18:36:15 -04:00
8b0e5b1ee3
# Description of Changes Closes https://github.com/clockworklabs/SpacetimeDBPrivate/issues/1987 # API and ABI breaking changes This does not affect any APIs but it does affect the code generated # Expected complexity level and risk 1 # Testing <!-- Describe any testing you've done, and any testing you'd like your reviewers to do, so that you're confident that all the changes work as expected! --> - [ ] Snap tests
47 lines
1.4 KiB
C#
Generated
47 lines
1.4 KiB
C#
Generated
// THIS FILE IS AUTOMATICALLY GENERATED BY SPACETIMEDB. EDITS TO THIS FILE
|
|
// WILL NOT BE SAVED. MODIFY TABLES IN YOUR MODULE SOURCE CODE INSTEAD.
|
|
|
|
#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();
|
|
}
|
|
}
|
|
}
|