18 lines
707 B
C#
18 lines
707 B
C#
namespace ApiDenuncias.Configuration
|
|
{
|
|
public class GestionaOptions
|
|
{
|
|
public string ApiBase { get; set; } = null!;
|
|
public string AccessToken { get; set; } = null!;
|
|
public string UserLink { get; set; } = null!;
|
|
public string GroupLink { get; set; } = null!;
|
|
public string Location { get; set; } = null!;
|
|
public string? ExternalProcedureId { get; set; }
|
|
public string? CircuitTemplateId { get; set; }
|
|
public string? CircuitSignerStampHref { get; set; }
|
|
public string? CircuitSignerStampTitle { get; set; }
|
|
public string? CircuitRecipientGroupHref { get; set; }
|
|
public string? CircuitVersion { get; set; }
|
|
}
|
|
}
|