Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Created May 20, 2020 05:16
ASP.NET Core Feature Management - MobileFilterSettings.cs
namespace FeatureManagementSample
{
using System.Collections.Generic;
public class MobileFilterSettings
{
public IList<string> Allowed { get; set; } = new List<string>();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment