15 lines
456 B
C#
15 lines
456 B
C#
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace OnlyOneAccessTemplate.Models
|
|
{
|
|
public record ConversionConfig
|
|
{
|
|
public string FormAction { get; init; } = string.Empty;
|
|
public string ThankYouPage { get; init; } = "/obrigado";
|
|
public List<FormField> FormFields { get; init; } = new();
|
|
public string ConversionPixel { get; init; } = string.Empty;
|
|
public string WebhookUrl { get; init; } = string.Empty;
|
|
}
|
|
|
|
}
|