Files
Prowlarr/src/NzbDrone.Core/Profiles/AppSyncProfile.cs
T
2022-05-10 19:32:05 -05:00

14 lines
372 B
C#

using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Profiles
{
public class AppSyncProfile : ModelBase
{
public string Name { get; set; }
public bool EnableRss { get; set; }
public bool EnableAutomaticSearch { get; set; }
public bool EnableInteractiveSearch { get; set; }
public int MinimumSeeders { get; set; }
}
}