mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
added marr.datamapper source code for easy debugging.
This commit is contained in:
14
Marr.Data/Reflection/IReflectionStrategy.cs
Normal file
14
Marr.Data/Reflection/IReflectionStrategy.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Marr.Data.Reflection
|
||||
{
|
||||
public interface IReflectionStrategy
|
||||
{
|
||||
void SetFieldValue<T>(T entity, string fieldName, object val);
|
||||
object GetFieldValue(object entity, string fieldName);
|
||||
object CreateInstance(Type type);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user