mirror of
https://github.com/LorisYounger/VPet.ModMaker.git
synced 2024-08-30 18:22:21 +00:00
12 lines
259 B
C#
12 lines
259 B
C#
using System;
|
|
|
|
namespace VPet.Plugin.ModMaker.ViewModels.ModEdit.LowTextEdit;
|
|
internal class MapperConfiguration
|
|
{
|
|
private Func<object, object> value;
|
|
|
|
public MapperConfiguration(Func<object, object> value)
|
|
{
|
|
this.value = value;
|
|
}
|
|
} |