Sonarr/src/NzbDrone.Core/Download/Clients/TorrentSeedConfiguration.cs

13 lines
284 B
C#

using System;
namespace NzbDrone.Core.Download.Clients
{
public class TorrentSeedConfiguration
{
public static TorrentSeedConfiguration DefaultConfiguration = new ();
public double? Ratio { get; set; }
public TimeSpan? SeedTime { get; set; }
}
}