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.
recyclarr/src/Recyclarr.ServarrApi/Tag/SonarrTag.cs

14 lines
379 B

using JetBrains.Annotations;
using Recyclarr.Common;
namespace Recyclarr.ServarrApi.Tag;
public class SonarrTag
{
public static IEqualityComparer<SonarrTag> Comparer { get; } =
new GenericEqualityComparer<SonarrTag>((x, y) => x.Id == y.Id, x => x.Id);
public string Label { get; [UsedImplicitly] set; } = "";
public int Id { get; [UsedImplicitly] set; }
}