mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-30 18:24:45 -04: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; }
|
|
}
|
|
}
|