You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/Lidarr.Api.V1/Tags/TagDetailsResource.cs

40 lines
1.2 KiB

using System.Collections.Generic;
using System.Linq;
using NzbDrone.Core.Tags;
using Lidarr.Http.REST;
namespace Lidarr.Api.V1.Tags
{
public class TagDetailsResource : RestResource
{
public string Label { get; set; }
public List<int> DelayProfileIds { get; set; }
public List<int> NotificationIds { get; set; }
public List<int> RestrictionIds { get; set; }
public List<int> ArtistIds { get; set; }
}
public static class TagDetailsResourceMapper
{
public static TagDetailsResource ToResource(this TagDetails model)
{
if (model == null) return null;
return new TagDetailsResource
{
Id = model.Id,
Label = model.Label,
DelayProfileIds = model.DelayProfileIds,
NotificationIds = model.NotificationIds,
RestrictionIds = model.RestrictionIds,
ArtistIds = model.ArtistIds
};
}
public static List<TagDetailsResource> ToResource(this IEnumerable<TagDetails> models)
{
return models.Select(ToResource).ToList();
}
}
}