mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-13 00:32:57 -07:00
12 lines
284 B
C#
12 lines
284 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ombi.Api.Radarr.Models
|
|
{
|
|
public class RadarrProfile
|
|
{
|
|
public string name { get; set; }
|
|
public Cutoff cutoff { get; set; }
|
|
public List<Item> items { get; set; }
|
|
public int id { get; set; }
|
|
}
|
|
}
|