Files

14 lines
300 B
C#
Raw Permalink Normal View History

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