mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-25 22:59:10 -04:00
14 lines
372 B
C#
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; }
|
|
}
|
|
}
|