Created
May 20, 2020 05:16
ASP.NET Core Feature Management - MobileFilterSettings.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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