mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-29 18:15:37 -04:00
13 lines
308 B
C#
13 lines
308 B
C#
using System;
|
|
|
|
namespace Radarr.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; }
|
|
}
|
|
}
|