mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
27 lines
803 B
C#
27 lines
803 B
C#
|
using System.Collections.Generic;
|
||
|
using NzbDrone.Common.Reflection;
|
||
|
using NzbDrone.Core.Annotations;
|
||
|
|
||
|
namespace NzbDrone.Api.ClientSchema
|
||
|
{
|
||
|
public static class SchemaDeserializer
|
||
|
{
|
||
|
public static object DeserializeSchema(object model, List<Field> fields)
|
||
|
{
|
||
|
var properties = model.GetType().GetSimpleProperties();
|
||
|
|
||
|
foreach (var propertyInfo in properties)
|
||
|
{
|
||
|
var fieldAttribute = propertyInfo.GetAttribute<FieldDefinitionAttribute>(false);
|
||
|
|
||
|
if (fieldAttribute != null)
|
||
|
{
|
||
|
var field = fields.Find(f => f.Name == propertyInfo.Name);
|
||
|
propertyInfo.SetValue(model, field.Value, null);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return model;
|
||
|
}
|
||
|
}
|
||
|
}
|