Files
SabreTools.Serialization/SabreTools.Wrappers/IWritable.cs
2026-04-14 10:25:05 -04:00

17 lines
567 B
C#

namespace SabreTools.Wrappers
{
/// <summary>
/// Represents an item that can have its model written directly
/// </summary>
public interface IWritable
{
/// <summary>
/// Write to an output directory
/// </summary>
/// <param name="outputPath">Output path to write to</param>
/// <param name="includeDebug">True to include debug data, false otherwise</param>
/// <returns>True if writing succeeded, false otherwise</returns>
public bool Write(string outputPath, bool includeDebug);
}
}