Files
SpacetimeDB/crates/bindings-csharp/Runtime/Internal/Autogen/RawRowLevelSecurityDefV9.g.cs
2025-02-05 22:07:45 +00:00

30 lines
650 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 RawRowLevelSecurityDefV9
{
[DataMember(Name = "sql")]
public string Sql;
public RawRowLevelSecurityDefV9(string Sql)
{
this.Sql = Sql;
}
public RawRowLevelSecurityDefV9()
{
this.Sql = "";
}
}
}