using System.Collections.Generic; namespace ZB.MOM.WW.LmxProxy.Host.Security { /// /// Configuration for API keys loaded from file /// public class ApiKeyConfiguration { /// /// List of API keys /// public List ApiKeys { get; set; } = new(); } }