mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-30 12:34:01 +00:00
New: Lidarr to Readarr
This commit is contained in:
12
src/Readarr.Http/ClientSchema/FieldMapping.cs
Normal file
12
src/Readarr.Http/ClientSchema/FieldMapping.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace Readarr.Http.ClientSchema
|
||||
{
|
||||
public class FieldMapping
|
||||
{
|
||||
public Field Field { get; set; }
|
||||
public Type PropertyType { get; set; }
|
||||
public Func<object, object> GetterFunc { get; set; }
|
||||
public Action<object, object> SetterFunc { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user