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 GetterFunc { get; set; } public Action SetterFunc { get; set; } } }