Files
Shubham Mishra 124808c2ff Case conversion Raw Def changes (#4294)
# 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
2026-02-13 22:27:29 +00:00

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