mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-22 15:41:56 -04:00
35 lines
592 B
C#
Generated
35 lines
592 B
C#
Generated
// THIS FILE IS AUTOMATICALLY GENERATED BY SPACETIMEDB. EDITS TO THIS FILE
|
|
// WILL NOT BE SAVED. MODIFY TABLES IN RUST INSTEAD.
|
|
// <auto-generated />
|
|
|
|
#nullable enable
|
|
|
|
using System;
|
|
using SpacetimeDB;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace SpacetimeDB.Internal
|
|
{
|
|
[SpacetimeDB.Type]
|
|
[DataContract]
|
|
public partial class RawRowLevelSecurityDefV9
|
|
{
|
|
[DataMember(Name = "sql")]
|
|
public string Sql;
|
|
|
|
public RawRowLevelSecurityDefV9(
|
|
string Sql
|
|
)
|
|
{
|
|
this.Sql = Sql;
|
|
}
|
|
|
|
public RawRowLevelSecurityDefV9()
|
|
{
|
|
this.Sql = "";
|
|
}
|
|
|
|
}
|
|
}
|