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/Code/Radarr/SelectableItem.cs

14 lines
241 B

namespace Recyclarr.Code.Radarr
{
public class SelectableItem<T>
{
public SelectableItem(T item)
{
Item = item;
}
public T Item { get; }
public bool Selected { get; set; }
}
}