mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-23 04:52:22 +00:00
17 lines
461 B
C#
17 lines
461 B
C#
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; }
|
|
}
|
|
} |