mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-23 16:11:42 -04:00
88090ec73a
Co-authored-by: James Gilles <jameshgilles@gmail.com>
36 lines
777 B
C#
Generated
36 lines
777 B
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 TableDesc
|
|
{
|
|
[DataMember(Name = "schema")]
|
|
public RawTableDefV8 Schema;
|
|
[DataMember(Name = "data")]
|
|
public uint Data;
|
|
|
|
public TableDesc(
|
|
RawTableDefV8 Schema,
|
|
uint Data
|
|
)
|
|
{
|
|
this.Schema = Schema;
|
|
this.Data = Data;
|
|
}
|
|
|
|
public TableDesc()
|
|
{
|
|
this.Schema = new();
|
|
}
|
|
}
|
|
}
|