mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-22 15:41:56 -04:00
88090ec73a
Co-authored-by: James Gilles <jameshgilles@gmail.com>
30 lines
650 B
C#
Generated
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 = "";
|
|
}
|
|
}
|
|
}
|