mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-22 23:51:30 -04:00
88090ec73a
Co-authored-by: James Gilles <jameshgilles@gmail.com>
37 lines
908 B
C#
Generated
37 lines
908 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 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();
|
|
}
|
|
}
|
|
}
|