Update field dialogs and share ratio

This commit is contained in:
ahjephson
2024-08-17 09:48:24 +01:00
parent cf12078de9
commit 566fab8f05
23 changed files with 394 additions and 58 deletions

View File

@@ -0,0 +1,17 @@
namespace Lantean.QBTMudBlade.Models
{
public record ShareRatio
{
public float RatioLimit { get; set; }
public float SeedingTimeLimit { get; set; }
public float InactiveSeedingTimeLimit { get; set; }
}
public record ShareRatioMax : ShareRatio
{
public float MaxRatio { get; set; }
public float MaxSeedingTime { get; set; }
public float MaxInactiveSeedingTime { get; set; }
}
}