Files

39 lines
1018 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.
// This was generated using spacetimedb cli version 1.1.1 (commit 92e49e96f461b4496bdab42facbab2c5d39d20f4).
#nullable enable
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
namespace SpacetimeDB.Internal
{
[SpacetimeDB.Type]
[DataContract]
public sealed partial class ReducerDef
{
[DataMember(Name = "name")]
public string Name;
[DataMember(Name = "args")]
public System.Collections.Generic.List<SpacetimeDB.BSATN.AggregateElement> Args;
public ReducerDef(
string Name,
System.Collections.Generic.List<SpacetimeDB.BSATN.AggregateElement> Args
)
{
this.Name = Name;
this.Args = Args;
}
public ReducerDef()
{
this.Name = "";
this.Args = new();
}
}
}