Files
MRCC/launcher/PCL-CE/PCL.Core/App/Configuration/ArgConfig.cs
T

14 lines
300 B
C#
Raw 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;
}
}