VPet.ModMaker/VPet.Plugin.ModMaker/ViewModels/ModEdit/LowTextEdit/MapperConfiguration.cs

12 lines
259 B
C#
Raw Normal View History

2023-08-19 21:52:13 +00:00
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;
}
}