Files
2025-02-05 22:07:45 +00:00

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();
}
}
}