Skip to content

Commit b7ebe87

Browse files
committed
Restore setters.
1 parent 86d292b commit b7ebe87

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Umbraco.Forms.Integrations.Crm.ActiveCampaign/Configuration/ActiveCampaignSettings.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ public ActiveCampaignSettings()
88
ContactFields = new List<ContactFieldSettings>();
99
}
1010

11-
public string BaseUrl { get; }
11+
public string BaseUrl { get; set; }
1212

13-
public string ApiKey { get; }
13+
public string ApiKey { get; set; }
1414

15-
public bool AllowContactUpdate { get; }
15+
public bool AllowContactUpdate { get; set; }
1616

1717
public List<ContactFieldSettings> ContactFields { get; set; }
1818
}

src/Umbraco.Forms.Integrations.Crm.Hubspot/Configuration/HubspotSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ public class HubspotSettings
55
{
66
public string ApiKey { get; set; }
77

8-
public bool AllowContactUpdate { get; }
8+
public bool AllowContactUpdate { get; set; }
99
}
1010
}

0 commit comments

Comments
 (0)