Lidarr/src/Lidarr.Http/ClientSchema/FieldMapping.cs
Qstick 089d213816
New: Nested Settings and Seed Ratio Setting (#379)
* New: Nested Settings and Seed Ratio Setting

* Fixed: Sonarr related variable naming
2018-06-01 21:59:54 -04:00

15 lines
380 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Lidarr.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; }
}
}