mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-24 15:19:42 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
21 lines
683 B
C#
21 lines
683 B
C#
namespace SabreTools.Data.Models.WiseInstaller.Actions
|
|
{
|
|
/// <summary>
|
|
/// External DLL Call
|
|
///
|
|
/// This represents a call to an external DLL.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This action is called through Call DLL Function and is invoked when
|
|
/// the external DLL path is provided.
|
|
/// </remarks>
|
|
/// <see href="https://www.manualslib.com/manual/404969/Symantec-Wisescript-Editor-8-0-Reference-For-Wise-Package-Studio-V1-0.html"/>
|
|
public class ExternalDllCall : FunctionData
|
|
{
|
|
/// <summary>
|
|
/// Arguments passed in from the Call DLL Function
|
|
/// </summary>
|
|
public string[]? Args { get; set; }
|
|
}
|
|
}
|