mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-07-27 20:42:12 -04:00
124808c2ff
# Description of Changes Case conversion addtion to `RawModuleDefV10`. Chunk has been taken from - https://github.com/clockworklabs/SpacetimeDB/pull/4264 to unblock csharp, and ts modules. # API and ABI breaking changes NA
30 lines
732 B
C#
Generated
30 lines
732 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 ExplicitNames
|
|
{
|
|
[DataMember(Name = "entries")]
|
|
public System.Collections.Generic.List<ExplicitNameEntry> Entries;
|
|
|
|
public ExplicitNames(System.Collections.Generic.List<ExplicitNameEntry> Entries)
|
|
{
|
|
this.Entries = Entries;
|
|
}
|
|
|
|
public ExplicitNames()
|
|
{
|
|
this.Entries = new();
|
|
}
|
|
}
|
|
}
|