feat(GdPictureOptions): Created to configure parameters related to GdPicture.

- Configure the GdPicture license key via a third-party module entity.
This commit is contained in:
2025-11-03 15:36:11 +01:00
parent 23d4b2f31e
commit 187f4a42fc
5 changed files with 30 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
namespace EnvelopeGenerator.Finalizer.Models;
public class GdPictureOptions
{
/// <summary>
///
/// </summary>
public string License { get; set; } = null!;
}