using System; using PCL.Core.Utils; namespace PCL.Core.App.Configuration; public class ArgConfig : ParameterizedProperty { public ArgConfig(Func getter, Action setter) { GetValue = getter; SetValue = setter; } }