using System.Collections.Generic; namespace Volo.Abp.SettingManagement.Blazor; public class SettingManagementComponentOptions { public List Contributors { get; } public SettingManagementComponentOptions() { Contributors = new List(); } }