mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-01 10:16:58 -05:00
11 lines
313 B
C#
11 lines
313 B
C#
namespace pkNX.Structures.FlatBuffers.Reflection;
|
|
|
|
/// <summary>
|
|
/// Dumps a <see cref="Schema"/> to a fbs and C# file.
|
|
/// </summary>
|
|
public sealed record SchemaDumpSettings
|
|
{
|
|
public bool StripNamespace { get; init; } = true;
|
|
public string FileNamespace { get; init; } = "pkNX.Structures.FlatBuffers";
|
|
}
|