mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-20 15:45:19 +00:00
13 lines
309 B
C#
13 lines
309 B
C#
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; }
|
|
}
|
|
}
|