Files
SpacetimeDB/crates/bindings-csharp/Runtime/Internal/Autogen/RawRowLevelSecurityDefV9.cs
2024-10-11 15:47:11 +00:00

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 = "";
}
}
}