Skip to content

Commit 8698145

Browse files
committed
Use List because IList isn't supported by FX.Configuration
1 parent fe1814b commit 8698145

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

IntegrationEngine.Core/Configuration/IntegrationPointConfigurations.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ namespace IntegrationEngine.Core.Configuration
55
{
66
public class IntegrationPointConfigurations
77
{
8-
public IList<MailConfiguration> Mail { get; set; }
9-
public IList<RabbitMQConfiguration> RabbitMQ { get; set; }
10-
public IList<ElasticsearchConfiguration> Elasticsearch { get; set; }
8+
public List<MailConfiguration> Mail { get; set; }
9+
public List<RabbitMQConfiguration> RabbitMQ { get; set; }
10+
public List<ElasticsearchConfiguration> Elasticsearch { get; set; }
1111
}
1212
}
1313

0 commit comments

Comments
 (0)