mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-09 17:12:53 +01:00
15 lines
380 B
C#
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; }
|
|
}
|
|
}
|