fixed label being init only

This commit is contained in:
Flaminel
2025-03-25 22:13:45 +02:00
parent c86e9c97b8
commit f2130ad734
@@ -17,7 +17,7 @@ public sealed record TorrentStatus
[JsonProperty("total_done")]
public long TotalDone { get; init; }
public string? Label { get; init; }
public string? Label { get; set; }
[JsonProperty("seeding_time")]
public long SeedingTime { get; init; }