2026-08-08 14:07:56 +08:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|